Skip to main content
GET
/
v2
/
issuer
/
claims
List all claims
curl --request GET \
  --url https://api.decisionly.com/v2/issuer/claims \
  --header 'Authorization: Basic <encoded-value>'
{
"has_more": false,
"data": [
{
"claim_id": "claim_abc123",
"status": "open",
"created": "2025-02-01T00:00:00.000Z"
},
{
"claim_id": "claim_def456",
"status": "filed",
"created": "2025-01-28T00:00:00.000Z"
}
]
}

Authorizations

Authorization
string
header
required

Use your API key as the username. No password is required.

Query Parameters

limit
integer
default:10

Number of claims to return (1-100). Defaults to 10.

Required range: 1 <= x <= 100

Response

A JSON array of claims with basic information.

has_more
boolean

Whether there are more claims available.

data
object[]