Request page N with: ?page=N&per_page=K
Start with small per_page (e.g., 50–200) and increase only if needed.
Keep fetching page = page + 1 until you’ve read all records (see total, or stop when a page returns fewer items than per_page).
401 Unauthorized: Check your Bearer token and header spelling.
4xx: Fix the request (params, types, required fields).
5xx: Temporary problem on our side—retry with backoff.
(See Error Codes for specifics and common recovery tips.)
Store API keys in env vars, never hard-code or ship them to a public frontend.
Paginate & cache: For bulk reads, pull in pages and cache results. Some sources publish revisions/backfills; plan to refresh historical slices periodically.
Version pinning: You’re on /v1. When a new major version arrives, we’ll announce it in the Changelog with a deprecation window.
Authentication & Limits — token usage, limits, and headers
Common Params — filtering, sorting, and more pagination examples
Endpoint pages — schemas, cadence, caveats, and examples for each dataset