Skip to main content
GET
/
v1
/
polymarket
/
events
/
{event_id}
Get an event by id
curl --request GET \
  --url https://api.radion.app/v1/polymarket/events/{event_id} \
  --header 'X-API-Key: <api-key>'
{
  "id": "<string>",
  "marketCount": 123,
  "markets": [
    {
      "conditionId": "<string>",
      "outcomes": [
        {
          "label": "<string>",
          "price": 123,
          "tokenId": "<string>"
        }
      ],
      "status": "<string>",
      "acceptingOrders": true,
      "bestAsk": 123,
      "bestBid": 123,
      "enableOrderbook": true,
      "endDate": 123,
      "groupItemTitle": "<string>",
      "icon": "<string>",
      "image": "<string>",
      "lastTradePrice": 123,
      "liquidity": 123,
      "oneDayPriceChange": 123,
      "question": "<string>",
      "resolution": {
        "conditionId": "<string>",
        "payoutNumerators": [
          123
        ],
        "resolutionSource": 123,
        "resolvedTs": "<string>"
      },
      "slug": "<string>",
      "spread": 123,
      "startDate": 123,
      "volume": 123,
      "volume1mo": 123,
      "volume1wk": 123,
      "volume1yr": 123,
      "volume24hr": 123
    }
  ],
  "themes": [
    {
      "label": "<string>",
      "slug": "<string>"
    }
  ],
  "venue": "<string>",
  "active": true,
  "archived": true,
  "closed": true,
  "closedTime": 123,
  "commentCount": 123,
  "competitive": 123,
  "creationDate": 123,
  "description": "<string>",
  "enableOrderbook": true,
  "endDate": 123,
  "featured": true,
  "featuredImage": "<string>",
  "icon": "<string>",
  "image": "<string>",
  "liquidity": 123,
  "negRisk": true,
  "new": true,
  "openInterest": 123,
  "resolutionSource": "<string>",
  "restricted": true,
  "seriesSlug": "<string>",
  "slug": "<string>",
  "startDate": 123,
  "subcategory": "<string>",
  "subtitle": "<string>",
  "ticker": "<string>",
  "title": "<string>",
  "volume": 123,
  "volume1mo": 123,
  "volume1wk": 123,
  "volume1yr": 123,
  "volume24hr": 123
}

Authorizations

X-API-Key
string
header
required

Path Parameters

event_id
string
required

Event numeric id

Response

id
string
required
marketCount
integer<int64>
required
markets
object[]
required
themes
object[]
required
venue
string
required
active
boolean | null
archived
boolean | null
closed
boolean | null
closedTime
integer<int64> | null
commentCount
integer<int32> | null
competitive
number<double> | null
creationDate
integer<int64> | null
description
string | null
enableOrderbook
boolean | null
endDate
integer<int64> | null
icon
string | null
image
string | null
liquidity
number<double> | null
negRisk
boolean | null
new
boolean | null
openInterest
number<double> | null
resolutionSource
string | null
restricted
boolean | null
seriesSlug
string | null
slug
string | null
startDate
integer<int64> | null
subcategory
string | null
subtitle
string | null
ticker
string | null
title
string | null
volume
number<double> | null
volume1mo
number<double> | null
volume1wk
number<double> | null
volume1yr
number<double> | null
volume24hr
number<double> | null
Last modified on July 7, 2026