Skip to main content

Parameters

ParameterTypeDefaultDescription
limitinteger50Items per page (max 100)
offsetinteger0Number of items to skip

Example

curl "https://api.voyantcloud.com/v1/products?limit=20&offset=40" \
  -H "Authorization: Bearer $VOYANT_API_KEY"
{
  "data": [/* ... */],
  "meta": {
    "total": 150,
    "limit": 20,
    "offset": 40,
    "hasMore": true
  }
}
Use hasMore to determine if more pages are available without calculating page numbers.