Skip to main content
GET
/
v1
/
markets
List Markets
curl --request GET \
  --url https://api.example.com/v1/markets

Query Parameters

limit
integer
default:"50"
Maximum results (max 200).
offset
integer
default:"0"
Pagination offset.
active
boolean
Filter by active status.
category
string
Filter by category (e.g., “politics”, “crypto”, “sports”).
Search market questions (case-insensitive).

Response

[
  {
    "id": "550e8400-e29b-41d4-a716-446655440000",
    "condition_id": "0xb27aae79...",
    "question_id": "0x1234...",
    "token_id_yes": "21742633143463...",
    "token_id_no": "48340923840234...",
    "question": "Will Bitcoin hit $100K in 2026?",
    "category": "crypto",
    "slug": "bitcoin-100k-2026",
    "image_url": "https://...",
    "neg_risk": true,
    "active": true,
    "resolved": false,
    "yes_price": 0.72,
    "no_price": 0.28,
    "volume_24h": 125000.50,
    "trade_count_24h": 342,
    "created_at": "2026-01-15T10:00:00Z",
    "updated_at": "2026-03-23T15:30:00Z"
  }
]