Guide

Pagination

List endpoints use cursor pagination so integrations can move through large result sets without relying on page numbers.

Cursor flow

  1. Call a list endpoint with a limit.
  2. Read the returned cursor field when more results are available.
  3. 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.