Skip to main content
GET
/
series
List series
curl --request GET \
  --url https://api.polyrouter.io/functions/v1/series \
  --header 'X-API-Key: <api-key>'
{
  "series": [
    {
      "id": "<string>",
      "platform": "polymarket",
      "platform_id": "<string>",
      "title": "<string>",
      "series_slug": "<string>",
      "description": "<string>",
      "image_url": "<string>",
      "category": "<string>",
      "tags": [
        "<string>"
      ],
      "metadata": {},
      "events": [
        "<any>"
      ],
      "markets": [
        "<any>"
      ],
      "last_synced_at": "2023-11-07T05:31:56Z",
      "raw_data": {}
    }
  ],
  "pagination": {
    "total": 123,
    "limit": 123,
    "offset": 123,
    "has_more": true,
    "next_offset": 123
  },
  "meta": {
    "request_time": 123,
    "cache_hit": true,
    "data_freshness": "2023-11-07T05:31:56Z"
  }
}

Authorizations

X-API-Key
string
header
required

API key for authentication

Query Parameters

platform
enum<string>

Filter by platform (single value only, not comma-separated): polymarket, kalshi

Available options:
polymarket,
kalshi
include_raw
boolean

Include raw data from the platform API

query
string

Search markets by name or description

limit
integer
default:10

Number of results per page (1-25)

Required range: 1 <= x <= 25
cursor
string

Cursor for pagination

Response

Series retrieved successfully

series
object[]
pagination
object
meta
object