Get the details of a single claim
GEThttps://api.health.curacel.co/api/v1/claims/:id
Get the details of a claim for an Insurer or provider/hospital.
Request
Path Parameters
id numberrequired
The id of the claim you want to get
Query Parameters
with_fields string
When present, value should be comma seperated names of field the user would like returned with the response.
Responses
- 200
- 401
- 403
- 422
Success
- application/json
- Schema
- Example (from schema)
Schema
id integer
ref string
This is the hmo_erp_id when user is an Insurer, and provider_ref when user is a provider.
pile_id integer
insurer object
provider object
enrollee object
encounter_date date
created_at date
submitted_at date
vetted_at date
diagnoses object[]
amount_billed double
amount_approved double
status string
Status includes: PENDING, APPROVED, PARTIALLY_APPROVED, REJECTED.
PARTIALLY_APPROVED represents when total amount is not equal to the amount approved but not equal to zero(0).
attachments object[]
items object[]
{
"id": 0,
"ref": "string",
"pile_id": 0,
"insurer": {
"id": 0,
"code": "string",
"name": "string"
},
"provider": {
"id": 0,
"code": "string",
"name": "string"
},
"enrollee": {
"id": 0,
"insurance_no": "string",
"firstname": "string",
"lastname": "string",
"is_floating": true
},
"encounter_date": "2025-03-16",
"created_at": "2025-03-16",
"submitted_at": "2025-03-16",
"vetted_at": "2025-03-16",
"diagnoses": [
{
"id": 0,
"icd_code": "string",
"name": "string"
}
],
"amount_billed": 0,
"amount_approved": 0,
"status": "string",
"attachments": [
{
"id": 0,
"title": "string",
"file_type": "string",
"filename": "string",
"file_url": "string",
"thumbnail_url": "string",
"preview_url": "string"
}
],
"items": [
{
"ref": "string",
"description": "string",
"unit_price_billed": 0,
"unit_price_approved": 0,
"qty_billed": 0,
"qty_approved": 0,
"sub_total_billed": 0,
"sub_total_approved": 0,
"comments": [
"string"
],
"status": "string"
}
]
}
Unauthenticated
Forbidden
Unprocessable Entity
Authorization: http
name: bearerAuthtype: httpscheme: bearerbearerFormat: API KEY from your account dashboard
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L -X GET 'https://api.health.curacel.co/api/v1/claims/:id' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>'
ResponseClear