Skip to main content
List endpoints use cursors to move through pages. A cursor is an opaque string. You do not read it; you just send it back. Pass cursor and limit as query parameters.

Parameters

ParameterTypeDefaultRangeWhat it does
limitinteger501–200How many items to return per page.
cursorstringThe nextCursor from the page before. Leave it out on the first request.

What a page looks like

Events and markets list responses use a named array and a nextCursor field:
{
  "events": [...],
  "nextCursor": "eyJjb21wdXRlZF9hdCI6Ij..."
}
nextCursor is null when there are no more pages.

Getting every page

# First page
curl "https://api.radion.app/v1/polymarket/events?limit=50" \
  -H "X-API-Key: YOUR_API_KEY"

# Next page (use nextCursor from the page before)
curl "https://api.radion.app/v1/polymarket/events?limit=50&cursor=NEXT_CURSOR" \
  -H "X-API-Key: YOUR_API_KEY"

Knowing when to stop

Stop when nextCursor is null. Do not stop just because the array looks empty. Always check nextCursor.
Last modified on July 7, 2026