Skip to main content
GET
/
api
/
v1
/
event
/
{event_id}
Get a specific event by ID
curl --request GET \
  --url https://prediction-markets-api.dflow.net/api/v1/event/{event_id} \
  --header 'x-api-key: <api-key>'
{
  "seriesTicker": "<string>",
  "subtitle": "<string>",
  "ticker": "<string>",
  "title": "<string>",
  "competition": "<string>",
  "competitionScope": "<string>",
  "imageUrl": "<string>",
  "liquidity": 1,
  "markets": [
    {
      "accounts": {},
      "canCloseEarly": true,
      "closeTime": 1,
      "eventTicker": "<string>",
      "expirationTime": 1,
      "marketType": "<string>",
      "noSubTitle": "<string>",
      "openInterest": 1,
      "openTime": 1,
      "result": "<string>",
      "rulesPrimary": "<string>",
      "status": "<string>",
      "subtitle": "<string>",
      "ticker": "<string>",
      "title": "<string>",
      "volume": 1,
      "yesSubTitle": "<string>",
      "earlyCloseCondition": "<string>",
      "noAsk": "<string>",
      "noBid": "<string>",
      "rulesSecondary": "<string>",
      "yesAsk": "<string>",
      "yesBid": "<string>"
    }
  ],
  "openInterest": 1,
  "settlementSources": [
    {
      "name": "<string>",
      "url": "<string>"
    }
  ],
  "strikeDate": 1,
  "strikePeriod": "<string>",
  "volume": 1,
  "volume24h": 1
}

Authorizations

x-api-key
string
header
required

API key for authentication. Contact [email protected] to obtain an API key.

Path Parameters

event_id
string
required

Event ticker ID

Query Parameters

withNestedMarkets
boolean

Include nested markets in response

Response

Single event

seriesTicker
string
required
subtitle
string
required
ticker
string
required
title
string
required
competition
string | null
competitionScope
string | null
imageUrl
string | null
liquidity
integer<int64> | null
Required range: x >= 0
markets
object[] | null
openInterest
integer<int64> | null
Required range: x >= 0
settlementSources
object[] | null
strikeDate
integer<int64> | null
Required range: x >= 0
strikePeriod
string | null
volume
integer<int64> | null
Required range: x >= 0
volume24h
integer<int64> | null
Required range: x >= 0