Skip to main content

Authentication

All requests require an API key passed via the x-api-key header, along with a tenant_id query parameter.
x-api-key
string
required
Your tenant API key.

Query Parameters

tenant_id
integer
required
Your tenant ID.
visit_number
string
required
The visit number to look up claim status for.

Response

payer_name
string
Name of the payer.
check_eft_number
string
Check or EFT trace number.
remittance_date
string
Remittance date (YYYY-MM-DD).
carrier_run_date
string
Carrier run date (YYYY-MM-DD).
account
string
Claim account identifier.
patient_name
string
Patient name on the claim.
subscriber_id
string
Subscriber/member ID.
icn
string
Internal control number (payer’s claim reference).
claim_status_code
string
Claim status code (e.g. 1 = processed as primary, 2 = processed as secondary, 4 = denied).
billed_amount
number
Total billed amount for the claim.
allowed_amount
number
Total allowed amount for the claim.
deductible_amount
number
Deductible applied to the claim.
coinsurance_amount
number
Coinsurance applied to the claim.
adjustment_amount
number
Total adjustment amount on the claim.
provider_paid_amount
number
Amount paid to the provider.
patient_responsibility
number
Patient responsibility amount.
remark_codes
string[]
Claim-level remittance advice remark codes (RARC), e.g. ["N381", "M15"].
service_lines
ServiceLineResult[]
Individual service lines on the claim.
curl -X GET "https://api.example.com/claim-status?tenant_id=1&visit_number=V12345" \
  -H "x-api-key: your-api-key"
{
  "payer_name": "Aetna",
  "check_eft_number": "1234567890",
  "remittance_date": "2026-03-01",
  "carrier_run_date": "2026-02-28",
  "account": "ACC-001",
  "patient_name": "John Doe",
  "subscriber_id": "MEM123456",
  "icn": "ICN789012",
  "claim_status_code": "1",
  "billed_amount": 1500.00,
  "allowed_amount": 1200.00,
  "deductible_amount": 200.00,
  "coinsurance_amount": 100.00,
  "adjustment_amount": 300.00,
  "provider_paid_amount": 900.00,
  "patient_responsibility": 300.00,
  "remark_codes": ["N381"],
  "service_lines": [
    {
      "line_index": 1,
      "procedure_code": "99213",
      "modifiers": "25",
      "service_date_from": "2026-02-15",
      "service_date_to": "2026-02-15",
      "units": 1.0,
      "billed_amount": 750.00,
      "allowed_amount": 600.00,
      "deductible_amount": 100.00,
      "coinsurance_amount": 50.00,
      "adjustment_amount": 150.00,
      "provider_paid_amount": 450.00,
      "adjustment_codes": [
        {
          "group_code": "CO",
          "reason_code": "45",
          "amount": 150.00
        }
      ],
      "remark_codes": ["N381"]
    }
  ]
}