Skip to main content
PredictStreet list endpoints use offset, page-number, cursor, or time-cursor pagination. Pagination parameters are endpoint-specific; an unsupported query parameter may be ignored, so only send the parameters listed below. This page inventories both integration-facing endpoints and first-party retail endpoints. Rows marked Retail/SIWE are included for completeness, but they are not part of the API-key integration surface.

General rules

  • Treat every cursor as opaque. Pass nextCursor back unchanged; do not parse or construct cursors.
  • Keep filters and limit unchanged when following a cursor.
  • before is a legacy time cursor on endpoints that also expose cursor; prefer cursor for new integrations.
  • A page shorter than its requested limit is the final page when the response does not expose nextCursor.
  • Limit overflow is endpoint-specific: some endpoints return HTTP 400, while others clamp to their maximum. Follow the endpoint’s own reference when a maximum is listed.

Offset and page-number endpoints

For offset pagination, request the next page with offset = offset + limit. For /api/events, increment page.

Cursor endpoints

Cursor endpoints with legacy before

Time-cursor and limit-only endpoints