Skip to main content
GET
/
api
/
events
/
{id}
Get event by id
curl --request GET \
  --url https://core.api.dev.predictstreet.sde.adifoundation.ai/api/events/{id}
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "slug": "<string>",
  "title": "<string>",
  "group": "<string>",
  "stage": "group",
  "teamA": "<string>",
  "teamB": "<string>",
  "tags": [
    {
      "slug": "<string>",
      "name": "<string>",
      "color": "<string>",
      "iconUrl": "<string>"
    }
  ],
  "eventStartTime": "2023-11-07T05:31:56Z",
  "createdAt": "2023-11-07T05:31:56Z",
  "updatedAt": "2023-11-07T05:31:56Z",
  "markets": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "eventId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "symbol": "<string>",
      "title": "<string>",
      "groupItemTitle": "<string>",
      "conditionId": "<string>",
      "questionId": "<string>",
      "yesTokenId": "<string>",
      "noTokenId": "<string>",
      "status": "DRAFT",
      "currentReviewRound": 123,
      "outcomeCount": 123,
      "outcomeLabels": [
        "<string>"
      ],
      "initialFairValue": "<string>",
      "initialOutcomePrices": [
        "<string>"
      ],
      "feeTakerBps": 123,
      "opensAt": "2023-11-07T05:31:56Z",
      "closesAt": "2023-11-07T05:31:56Z",
      "kickoff": "2023-11-07T05:31:56Z",
      "resolutionWindowHours": 123,
      "pausedAt": "2023-11-07T05:31:56Z",
      "resolvedAt": "2023-11-07T05:31:56Z",
      "payoutNumerators": "<unknown>",
      "officialDataSource": "<string>",
      "sourceFixtureId": "<string>",
      "resolutionCriteria": "<string>",
      "negRiskEligible": true,
      "isNewMarketType": true,
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z",
      "outcomePrices": [
        "<string>"
      ]
    }
  ]
}

Path Parameters

id
string<uuid>
required

Response

OK

Polymarket-style event grouping. One event can hold one or more markets (e.g. a per-team accordion under a single tournament question).

id
string<uuid>
slug
string
title
string
group
string | null

Tournament group letter ("A".."L"). Null for non-fixture events.

stage
enum<string> | null
Available options:
group,
r32,
r16,
quarter_finals,
semi_finals,
third_place,
final
teamA
string | null

FIFA 3-letter country code of the focus side. For 1-vs-1 fixtures both teamA and teamB are set; for tournament-winner markets only teamA is populated; for picker-style multi-outcome markets both are null.

teamB
string | null

FIFA 3-letter country code of the opposing side in 1-vs-1 fixtures.

tags
object[]

Currently-active tags assigned to the event. Filter via /api/events?tag=.

eventStartTime
string<date-time> | null

Real-world fixture kickoff time, separate from createdAt.

createdAt
string<date-time>
updatedAt
string<date-time>
markets
object[]