Skip to main content
GET
/
v1
/
markets
/
{id}
Get Market
curl --request GET \
  --url https://api.example.com/v1/markets/{id}

Path Parameters

id
uuid
required
Market UUID.

Response

Returns a single market object with the same structure as the list endpoint.
{
  "id": "550e8400-e29b-41d4-a716-446655440000",
  "condition_id": "0xb27aae79...",
  "question": "Will Bitcoin hit $100K in 2026?",
  "yes_price": 0.72,
  "no_price": 0.28,
  "volume_24h": 125000.50,
  "active": true,
  "resolved": false
}

Errors

StatusDescription
404Market not found