Skip to main content
List endpoints return paginated results using cursor-based pagination. Cursors are opaque strings — don’t parse or construct them yourself.

Parameters

ParameterDefaultDescription
limit50Number of results per page (1–100)
cursorCursor from a previous response’s nextCursor

Response structure

Every list response includes pagination metadata in meta:
{
  "data": [...],
  "meta": {
    "pagination": {
      "hasMore": true,
      "nextCursor": "cur_eyJ2IjoxLC..."
    }
  }
}
  • hasMoretrue if additional results exist beyond this page
  • nextCursor — Pass this as the cursor query parameter to fetch the next page. null when hasMore is false.