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": "2026-04-01T00:00:00.000Z", "status": "open" }, { "claim_id": "claim_def456", "created": "2026-03-15T00:00:00.000Z", "status": "filed" } ], "has_more": false }

Documentation Index

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

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

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.