Skip to main content
GET
/
series
/
{series_id}
Get series details
curl --request GET \
  --url https://api.polyrouter.io/functions/v1/series/{series_id} \
  --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

Path Parameters

series_id
string
required

Platform-native series identifier

Query Parameters

include_raw
boolean

Include raw data from the platform API

Response

Series details retrieved successfully

series
object[]
pagination
object
meta
object