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>'
{
  "data": [
    {
      "claim_id": "claim_abc123",
      "created": "2025-02-01T00:00:00.000Z",
      "status": "open"
    },
    {
      "claim_id": "claim_def456",
      "created": "2025-01-28T00:00:00.000Z",
      "status": "filed"
    }
  ],
  "has_more": false
}

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.

data
object[]
has_more
boolean

Whether there are more claims available.