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 next_cursor

Response structure

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