GET/holds

List holds

List holds in the program (paginated).

Query Parameters

limitinteger

Page size

Example: 50

cursorstring

Pagination cursor

Request
GET/holds
curl --location 'https://api.ledgr.dev/v1/holds' \
--header 'Authorization: {api_key}'
Response

A page of holds

{
  "holds": [],
  "status": "success",
  "pagination": {
    "limit": 50,
    "has_next": false,
    "next_cursor": null
  }
}