meta object:
next_cursor to continue forward and previous_cursor when backward navigation is available.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Navigate large collections with opaque cursors.
| Parameter | Description |
|---|---|
limit | Number of records to return. The default is 50; the maximum is 1000. |
cursor | Opaque cursor returned by a previous response. |
curl "https://api.amplify.xyz/v1/numbers?limit=50&cursor=CURSOR" \
--header "Authorization: Bearer $AMPLIFY_ACCESS_TOKEN"
meta object:
{
"next_cursor": "opaque_next_cursor",
"previous_cursor": null,
"has_more": true,
"limit": 50
}
next_cursor to continue forward and previous_cursor when backward navigation is available.