Guide
Pagination
List endpoints use cursor pagination so integrations can move through large result sets without relying on page numbers.
Cursor flow
- Call a list endpoint with a
limit. - Read the returned cursor field when more results are available.
- Pass that cursor back on the next request.
curl "https://dev.niftyimages.com/v2/images?limit=25" \
-H "Authorization: Bearer $NIFTYIMAGES_API_KEY"
curl "https://dev.niftyimages.com/v2/images?limit=25&cursor=NEXT_CURSOR" \
-H "Authorization: Bearer $NIFTYIMAGES_API_KEY"
Treat cursors as opaque strings. Do not parse, edit, or build them yourself.