GET
/
claims
curl --request GET \
  --url https://api.usecobalt.com/v1/claims \
  --header 'access_token: <api-key>' \
  --header 'client_id: <api-key>' \
  --header 'client_secret: <api-key>'
{
  "success": true,
  "results": {
    "claims": [
      {
        "claim_number": "<string>",
        "claim_status": "<string>",
        "claim_pdf_url": "<string>",
        "chart_note_pdf_url": "<string>",
        "service_date": "<string>",
        "patient_account_number": "<string>",
        "patient_name": "<string>",
        "patient_dob": "<string>",
        "patient_gender": "<string>",
        "primary_insurance_name": "<string>",
        "primary_insurance_subscriber": "<string>",
        "primary_insurance_subscriber_number": "<string>",
        "primary_insurance_group_number": "<string>",
        "primary_insurance_payer_id": "<string>"
      }
    ]
  }
}

Example Request

curl -X GET https://api.usecobalt.com/v1/claims \
-H 'Content-Type: application/json' \
-H 'client_id: ci_live_198908HJDKJSH98789OHKJL' \
-H 'client_secret: cs_live_9827hofdsklOYYHJLJh' \
-H 'access_token: 493JKLHIU98789hLKH9HHJH' \
-G \
--data-urlencode "start_date=2024-06-04" \
--data-urlencode "end_date=2024-07-04"

Example Response

{
    "success": true,
    "results": {
        "claims": [
            {
                "claim_number": "1234",
                "claim_status": "Patient",
                "claim_pdf_url": "https://domain.com/org-claims-files/claim_1234.pdf",
                "chart_note_pdf_url": "https://domain.com/org-claims-files/chartnote_1234.pdf",
                "service_date": "2024-06-13",
                "patient_account_number": "1234134",
                "patient_name": "Doe, Jane",
                "patient_dob": "1989-04-14",
                "patient_gender": "M",
                "primary_insurance_name": "Aetna",
                "primary_insurance_subscriber": "Doe, John",
                "primary_insurance_subscriber_number": "F1892398321",
                "primary_insurance_group_number": "09u2349u3",
                "primary_insurance_payer_id": "60054"
            }
        ]
    }
}

Authorizations

client_id
string
header
required
client_secret
string
header
required
access_token
string
header
required

Query Parameters

start_date
string
required

The start of the date range (YYYY-MM-DD)

end_date
string
required

The end of the date range (YYYY-MM-DD)

patient_mrn
string

The mrn of the patient to search for

Response

200 - application/json
Successful response
success
boolean
results
object