GET
/
events
curl --request GET \
  --url https://gamma-api.polymarket.com/events
[
  {
    "id": 123,
    "slug": "<string>",
    "liquidity": 123,
    "volume": 123,
    "start_date": "<string>",
    "end_date": "<string>",
    "tags": [
      "<string>"
    ]
  }
]

Events

Get events.

Note: Markets can be traded via the CLOB if enableOrderBook is true.

Query Parameters

limit
integer

Limit query results

offset
integer

Pagination offset

order
string

Key to sort by

ascending
boolean

Sort direction, defaults to true, requires the order parameter

id
integer

ID of a single event to query, can be used multiple times to fetch multiple events

slug
string

Slug of a single event to query, can be used multiple times to fetch multiple events

archived
boolean

Filter by archived status

active
boolean

Filter by active status

closed
boolean

Filter by closed status

liquidity_min
number

Filter by minimum liquidity

liquidity_max
number

Filter by maximum liquidity

volume_min
number

Filter by minimum volume

volume_max
number

Filter by maximum volume

start_date_min
string

Filter by minimum start date

start_date_max
string

Filter by maximum start date

end_date_min
string

Filter by minimum end date

end_date_max
string

Filter by maximum end date

tag
string

Filter by tag labels

tag_id
integer

Filter by tag ID

Include events with related tags, requires the tag_id parameter

tag_slug
string

Filter by tag slug

Response

200
application/json

Successful response

The response is of type object[].