GET
/
v1
/
claims
List claims
curl --request GET \
  --url http://localhost:4011/v1/claims \
  --header 'Authorization: Bearer <token>'
{
  "claims": [
    {
      "claimType": 0,
      "key": "12345678901",
      "bankId": "12345678",
      "claimId": "claim-abc123-def456-789012",
      "stClaim": 0
    }
  ]
}

Authorizations

Authorization
string
header
required

JWT token obtained from the authentication endpoint

Query Parameters

account_id
string<uuid>
required

Account ID to list claims for

status
enum<integer>

Filter claims by status

Available options:
0,
1,
2,
3,
4

Response

Claims retrieved successfully

claims
object[]