Skip to main content
Fetch a claim rollup (review + adjudication + status)
curl --request GET \
  --url https://api.sandbox.thrivory.com/v1/claims/{claim_id} \
  --header 'Authorization: Bearer <token>'
{
  "claim_identifier": "<string>",
  "review": {
    "authorization_id": "<string>",
    "denial_predicted": true,
    "expected_reimbursement": {
      "expected": 123,
      "allowed": 123
    },
    "denial_reasons": [
      {
        "code": "<string>",
        "description": "<string>"
      }
    ],
    "expected_payment_date": "2023-12-25",
    "confidence": 0.5,
    "id": "<string>"
  },
  "adjudication": {
    "settlement_id": "<string>",
    "terms": {
      "advance_percentage": 123,
      "advance_amount": 123,
      "fees_estimate": 123
    },
    "expected_reimbursement": 123,
    "expected_payment_date": "2023-12-25"
  },
  "status": {
    "claim_id": "<string>",
    "status": "<string>",
    "updated_at": "2023-11-07T05:31:56Z"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.thrivory.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

claim_id
string
required

Response

Claim object

claim_identifier
string
review
object
adjudication
object
status
object