Skip to main content
List endpoints return manageable result sets and accept cursor and limit query parameters.
  • Start by omitting cursor.
  • If the response contains nextCursor, pass it as cursor to fetch the next page.
  • Stop when nextCursor is null.
Paginate portfolio wallets
cURL
curl -X GET "$BASE_URL/v2/wallets?limit=25" \
  -H "Authorization: Bearer $TOKEN"
Next page
cURL
curl -X GET "$BASE_URL/v2/wallets?limit=25&cursor=$NEXT_CURSOR" \
  -H "Authorization: Bearer $TOKEN"
200 response
{
  "data": [],
  "nextCursor": null
}
200 responses include data and nextCursor. When nextCursor is null, there are no more pages.