cURL
curl --request GET \ --url https://api.decisionly.com/v2/issuer/claims \ --header 'Authorization: Basic <encoded-value>'
200
Example
{ "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" } ]}
Returns a simplified list of all claims. Use the retrieve endpoint to get full claim details with cases.
Use your API key as the username. No password is required.
Number of claims to return (1-100). Defaults to 10.
1 <= x <= 100
A JSON array of claims with basic information.
Whether there are more claims available.
Show child attributes