Skip to main content
GET
/
v1
/
pm
/
events
/
{eventId}
Get event
curl --request GET \
  --url https://relay.bayse.markets/v1/pm/events/{eventId}
{
  "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
  "slug": "super-eagles-afcon-2026",
  "title": "Will Super Eagles qualify for AFCON 2026?",
  "category": "sports",
  "type": "single",
  "engine": "AMM",
  "status": "open",
  "resolutionDate": "2025-11-20T00:00:00Z",
  "closingDate": "2025-11-19T18:00:00Z",
  "liquidity": 50000,
  "totalVolume": 120000,
  "totalOrders": 843,
  "supportedCurrencies": ["USD", "NGN"],
  "userWatchlisted": true,
  "markets": [
    {
      "id": "b2c3d4e5-f6a7-8901-bcde-f12345678901",
      "title": "Will Super Eagles qualify?",
      "status": "open",
      "outcome1Id": "c3d4e5f6-a7b8-9012-cdef-123456789012",
      "outcome1Label": "YES",
      "outcome1Price": 0.72,
      "outcome2Id": "d4e5f6a7-b8c9-0123-defa-234567890123",
      "outcome2Label": "NO",
      "outcome2Price": 0.28,
      "yesBuyPrice": 0.72,
      "noBuyPrice": 0.28,
      "feePercentage": 2.0,
      "totalOrders": 843,
      "rules": "Resolves YES if Nigeria qualifies for AFCON 2026."
    }
  ]
}

Authentication

Public — no authentication required. Provide X-Public-Key for personalized data (watchlist status).

Path parameters

eventId
string
required
UUID of the event.

Query parameters

currency
string
default:"USD"
Currency for prices: USD or NGN.

Example request

curl "https://relay.bayse.markets/v1/pm/events/a1b2c3d4-e5f6-7890-abcd-ef1234567890?currency=NGN" \
  -H "X-Public-Key: pk_live_abcdef123456"

Response

Returns a single event object. See List events for the full field reference — the response shape is identical.
{
  "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
  "slug": "super-eagles-afcon-2026",
  "title": "Will Super Eagles qualify for AFCON 2026?",
  "category": "sports",
  "type": "single",
  "engine": "AMM",
  "status": "open",
  "resolutionDate": "2025-11-20T00:00:00Z",
  "closingDate": "2025-11-19T18:00:00Z",
  "liquidity": 50000,
  "totalVolume": 120000,
  "totalOrders": 843,
  "supportedCurrencies": ["USD", "NGN"],
  "userWatchlisted": true,
  "markets": [
    {
      "id": "b2c3d4e5-f6a7-8901-bcde-f12345678901",
      "title": "Will Super Eagles qualify?",
      "status": "open",
      "outcome1Id": "c3d4e5f6-a7b8-9012-cdef-123456789012",
      "outcome1Label": "YES",
      "outcome1Price": 0.72,
      "outcome2Id": "d4e5f6a7-b8c9-0123-defa-234567890123",
      "outcome2Label": "NO",
      "outcome2Price": 0.28,
      "yesBuyPrice": 0.72,
      "noBuyPrice": 0.28,
      "feePercentage": 2.0,
      "totalOrders": 843,
      "rules": "Resolves YES if Nigeria qualifies for AFCON 2026."
    }
  ]
}