Skip to main content
GET
/
api
/
v1
/
events
Get list of events
curl --request GET \
  --url https://dev-prediction-markets-api.dflow.net/api/v1/events \
  --header 'x-api-key: <api-key>'
{
  "events": [
    {
      "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
    }
  ],
  "cursor": 1
}

Authorizations

x-api-key
string
header
required

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

Query Parameters

limit
integer<int32>

Maximum number of events to return

Required range: x >= 0
withNestedMarkets
boolean

Include nested markets in response

cursor
integer<int32>

Pagination offset (number of events to skip)

Required range: x >= 0
seriesTickers
string

Filter by series tickers (comma-separated list, max 25)

isInitialized
boolean

Filter events that are initialized (have a corresponding market ledger)

status
string

Filter events by market status. Available options: initialized, active, inactive, closed, determined

sort
enum<string>

Sort field. Available options: volume, volume24h, liquidity, openInterest, startDate

Available options:
volume,
volume24h,
liquidity,
openInterest,
startDate

Response

List of events

events
object[]
required
cursor
integer<int32> | null
Required range: x >= 0