Skip to main content
List endpoints return manageable result sets and accept cursor and pageSize 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/portfolio-wallets?pageSize=25" \
  -H "Authorization: Bearer $TOKEN"
Next page
cURL
curl -X GET "$BASE_URL/v2/portfolio-wallets?pageSize=25&cursor=$NEXT_CURSOR" \
  -H "Authorization: Bearer $TOKEN"
200 response
{
  "data": [],
  "pageSize": 25,
  "nextCursor": null
}
200 responses include data, pageSize, and nextCursor.