Pagination is endpoint-specific. Do not assume that every route accepts limit or returns pagination through response headers.

Common patterns

Date filters

Similar filters with different names

  • Enterprise potential phishing and typosquatting use q.
  • Enterprise compromised credentials uses query.
  • Nexus company lookup uses query.
  • Nexus IP lookup uses query, while Tor lookup uses ip.
  • Domain Collection lookup uses domain.

Safe pagination loop

  1. Start at page 1.
  2. Validate that the expected items array and pagination object exist.
  3. Process and deduplicate stable record identifiers.
  4. Continue only while has_next, pages, or equivalent metadata indicates another page.
  5. Set a maximum page count so malformed metadata cannot create an infinite loop.
See the brand impersonation guide and OEM metering guide for runnable pagination examples.