Skip to main content
GET
/
cases
/
{case_id}
Get a case
curl --request GET \
  --url https://api.example.com/v1/cases/{case_id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "01K5WF06MJ6T99HRYE78AN7XM8",
    "onboarding_id": "01K5WET89VJ8HKBTMP3PS6KFBF",
    "queue_assignment": "John's Queue",
    "flow_position": "Closure - Decisions - Initial",
    "estate_value": "unknown",
    "progress": "no_clue",
    "possible_dispute": "no_dispute_expected",
    "pending_searches": [
      "irs"
    ],
    "date_of_sign_up": "2025-09-23T10:30:00Z",
    "terms_accepted_at": "2025-09-23T10:30:00Z",
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

case_id
string
required

Unique case identifier (ULID format).

Response

Case details.

data
object