Skip to main content
GET
/
v1
/
pm
/
markets
/
{marketId}
/
ticker
Ticker
curl --request GET \
  --url https://relay.bayse.markets/v1/pm/markets/{marketId}/ticker
{
  "marketId": "b2c3d4e5-f6a7-8901-bcde-f12345678901",
  "outcome": "YES",
  "lastPrice": 0.72,
  "bestBid": 0.70,
  "bestAsk": 0.72,
  "midPrice": 0.71,
  "spread": 0.02,
  "volume24h": 15420,
  "high24h": 0.74,
  "low24h": 0.65,
  "priceChange24h": 0.04,
  "tradeCount24h": 247,
  "timestamp": "2026-02-17T12:00:00Z"
}

Authentication

No authentication required.

Path parameters

marketId
string
required
UUID of the market.

Query parameters

outcome
string
The outcome label: YES or NO. Required if outcomeId is not provided.
outcomeId
string
UUID of the outcome. Must belong to the specified market. Required if outcome is not provided.

Example request

curl "https://relay.bayse.markets/v1/pm/markets/b2c3d4e5-f6a7-8901-bcde-f12345678901/ticker?outcome=YES"

Response

Returns current market statistics for the requested outcome.
{
  "marketId": "b2c3d4e5-f6a7-8901-bcde-f12345678901",
  "outcome": "YES",
  "lastPrice": 0.72,
  "bestBid": 0.70,
  "bestAsk": 0.72,
  "midPrice": 0.71,
  "spread": 0.02,
  "volume24h": 15420,
  "high24h": 0.74,
  "low24h": 0.65,
  "priceChange24h": 0.04,
  "tradeCount24h": 247,
  "timestamp": "2026-02-17T12:00:00Z"
}