Skip to main content
GET
/
series
/
{identifier}
cURL
curl --request GET \
  --url http://localhost:10112/series/{identifier}
{
  "id": "<string>",
  "active": true,
  "closed": true,
  "archived": true,
  "featured": true,
  "restricted": true,
  "tags": [
    {
      "id": "",
      "label": "",
      "slug": null
    }
  ],
  "events": [
    {
      "id": "",
      "slug": null,
      "title": null,
      "ticker": null,
      "description": null,
      "resolution_source": null,
      "category": null,
      "image_url": null,
      "active": true,
      "closed": false,
      "archived": false,
      "new": false,
      "featured": false,
      "restricted": false,
      "live": false,
      "ended": false,
      "market_count": 0,
      "start_date": null,
      "end_date": null,
      "creation_date": null,
      "published_at": null,
      "neg_risk": false,
      "neg_risk_market_id": null,
      "event_week": null,
      "score": null,
      "elapsed": null,
      "period": null,
      "game_status": null,
      "metrics": {},
      "tags": [],
      "markets": [],
      "series": "<unknown>",
      "show_market_images": false,
      "automatically_resolved": false
    }
  ],
  "slug": "<string>",
  "ticker": "<string>",
  "title": "<string>",
  "description": "<string>",
  "series_type": "<string>",
  "recurrence": "<string>",
  "image_url": "<string>",
  "pyth_token_id": "<string>",
  "cg_asset_name": "<string>"
}

Path Parameters

identifier
string
required

Series slug or ID

Query Parameters

slim
boolean

Return minimal data without events (default: false)

event_limit
integer<int64>

Events to include (default: 20, max: 100)

event_offset
integer<int64>

Event pagination offset

Response

Series details with events and tags

id
string
required
active
boolean
required
closed
boolean
required
archived
boolean
required
restricted
boolean
required
tags
object[]
required
events
object[]
required
slug
string | null
ticker
string | null
title
string | null
description
string | null
series_type
string | null
recurrence
string | null
image_url
string | null
pyth_token_id
string | null
cg_asset_name
string | null
Last modified on February 19, 2026