Skip to main content
GET
/
v1
/
pm
/
events
/
slug
/
{slug}
Get event by slug
curl --request GET \
  --url https://relay.bayse.markets/v1/pm/events/slug/{slug}
{
  "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
  "slug": "crypto-btc-1h-feb-24-11am",
  "title": "Bitcoin Hourly — Feb 24 11am GMT",
  "category": "crypto",
  "type": "single",
  "engine": "AMM",
  "status": "open",
  "openingDate": "2025-02-24T11:00:00Z",
  "closingDate": "2025-02-24T12:00:00Z",
  "resolutionDate": "2025-02-24T12:01:00Z",
  "assetSymbolPair": "BTCUSDT",
  "eventThreshold": 96250.50,
  "seriesSlug": "crypto-btc-1h",
  "liquidity": 10000,
  "totalVolume": 25000,
  "totalOrders": 142,
  "supportedCurrencies": ["USD", "NGN"],
  "userWatchlisted": false,
  "markets": [
    {
      "id": "b2c3d4e5-f6a7-8901-bcde-f12345678901",
      "title": "BTC above $96,250.50?",
      "status": "open",
      "outcome1Id": "c3d4e5f6-a7b8-9012-cdef-123456789012",
      "outcome1Label": "YES",
      "outcome1Price": 0.55,
      "outcome2Id": "d4e5f6a7-b8c9-0123-defa-234567890123",
      "outcome2Label": "NO",
      "outcome2Price": 0.45,
      "yesBuyPrice": 0.55,
      "noBuyPrice": 0.45,
      "feePercentage": 2.0,
      "totalOrders": 142,
      "marketThreshold": 96250.50,
      "rules": "Resolves YES if BTC price is above $96,250.50 at closing."
    }
  ]
}

Authentication

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

Path parameters

slug
string
required
Human-readable slug of the event (e.g. crypto-btc-1h-feb-24-11am).

Query parameters

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

Example request

curl "https://relay.bayse.markets/v1/pm/events/slug/crypto-btc-1h-feb-24-11am?currency=USD" \
  -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": "crypto-btc-1h-feb-24-11am",
  "title": "Bitcoin Hourly — Feb 24 11am GMT",
  "category": "crypto",
  "type": "single",
  "engine": "AMM",
  "status": "open",
  "openingDate": "2025-02-24T11:00:00Z",
  "closingDate": "2025-02-24T12:00:00Z",
  "resolutionDate": "2025-02-24T12:01:00Z",
  "assetSymbolPair": "BTCUSDT",
  "eventThreshold": 96250.50,
  "seriesSlug": "crypto-btc-1h",
  "liquidity": 10000,
  "totalVolume": 25000,
  "totalOrders": 142,
  "supportedCurrencies": ["USD", "NGN"],
  "userWatchlisted": false,
  "markets": [
    {
      "id": "b2c3d4e5-f6a7-8901-bcde-f12345678901",
      "title": "BTC above $96,250.50?",
      "status": "open",
      "outcome1Id": "c3d4e5f6-a7b8-9012-cdef-123456789012",
      "outcome1Label": "YES",
      "outcome1Price": 0.55,
      "outcome2Id": "d4e5f6a7-b8c9-0123-defa-234567890123",
      "outcome2Label": "NO",
      "outcome2Price": 0.45,
      "yesBuyPrice": 0.55,
      "noBuyPrice": 0.45,
      "feePercentage": 2.0,
      "totalOrders": 142,
      "marketThreshold": 96250.50,
      "rules": "Resolves YES if BTC price is above $96,250.50 at closing."
    }
  ]
}