Skip to main content
GET
/
series
/
{identifier}
/
events
cURL
curl --request GET \
  --url http://localhost:10112/series/{identifier}/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
  }
]

Path Parameters

identifier
string
required

Series slug or ID

Query Parameters

active_only
boolean

Only active events (default: false)

include_tags
boolean

Include tags array (default: true)

include_markets
boolean

Include markets array with outcomes (default: true)

limit
integer<int32>

Results limit (default: 50)

offset
integer<int32>

Pagination offset

Response

200 - application/json

Events belonging to this series with nested tags and markets

id
string
default:""
slug
string | null
title
string | null
ticker
string | null
description
string | null
resolution_source
string | null
category
string | null
image_url
string | null
active
boolean
default:true
closed
boolean
default:false
archived
boolean
default:false
new
boolean
default:false
restricted
boolean
default:false
live
boolean
default:false
ended
boolean
default:false
market_count
integer<int32>
default:0
start_date
integer<int64> | null
end_date
integer<int64> | null
creation_date
integer<int64> | null
published_at
string<date-time> | null
neg_risk
boolean
default:false
neg_risk_market_id
string | null
event_week
integer<int32> | null
score
string | null
elapsed
string | null
period
string | null
game_status
string | null
metrics
object
tags
object[]
markets
object[]
series
object

A Polymarket series from the Gamma API Series are parent groupings above events (e.g., "NBA Season 2024-25")

show_market_images
boolean
default:false
automatically_resolved
boolean
default:false
Last modified on February 19, 2026