Skip to main content
GET
/
claims
/
guarantees
Get claims by license (paginated)
curl --request GET \
  --url https://sandbox-api.anzi.finance/v1/claims/guarantees \
  --header 'X-API-KEY: <api-key>'
{
  "claims": [
    {
      "uid": "4f1a2b3c-5d6e-7f8a-9b0c-1d2e3f4a5b6c",
      "automaticPayment": true,
      "creationDate": "2025-09-05T10:00:00.000Z",
      "creditPrincipalOutstanding": 10000,
      "status": 1,
      "type": 0,
      "amountToPay": 25000
    },
    {
      "uid": "7e6d5c4b-3a2f-1e0d-9c8b-7a6f5e4d3c2b",
      "automaticPayment": false,
      "creationDate": "2025-09-06T10:00:00.000Z",
      "creditPrincipalOutstanding": 0,
      "status": 2,
      "type": 0,
      "amountToPay": 18000
    }
  ],
  "pagination": {
    "startCursor": "4f1a2b3c-5d6e-7f8a-9b0c-1d2e3f4a5b6c",
    "endCursor": "7e6d5c4b-3a2f-1e0d-9c8b-7a6f5e4d3c2b",
    "hasNextPage": true,
    "hasPreviousPage": false,
    "totalCount": 27
  }
}
Returns claims for the authenticated license. Use query params for pagination, sorting and filtering.

Authorizations

X-API-KEY
string
header
required

Query Parameters

license
string
required

License UID

page
integer
required

Page number (1-based)

Required range: x >= 1
limit
integer
required

Page size (items per page)

Required range: x >= 1
sort
enum<string>

Sort order by creation date

Available options:
asc,
ascending,
desc,
descending
status
enum<integer>

Claim status (0=PENDING_REVIEW, 1=APPROVED, 2=PROCESSING_PAYMENT, 3=PAID, 4=REJECTED)

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

If true, returns only claims without associated payment

Response

Paginated list of claims

claims
object[]
pagination
object

Cursor-like pagination structure returned alongside results.