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

slug
string
required

Event slug

Query Parameters

include_tags
boolean

Include tags array (default: true)

include_markets
boolean

Include markets array with outcomes (default: true)

Response

Event details with nested tags, markets (with outcomes), and series

A Polymarket event from the Gamma API

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