Skip to main content
GET
/
v1
/
markets
List Markets
curl --request GET \
  --url https://api.polydata.live/v1/markets
{
  "data": [
    {}
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.polydata.live/llms.txt

Use this file to discover all available pages before exploring further.

Returns markets sorted by activity (most ticks first). No authentication required — this endpoint is public.

Query Parameters

Substring filter on market ID
limit
number
default:"100"
Max results (1-1000)
offset
number
default:"0"
Pagination offset

Response

data
array
Array of: {market, asset_id, side, first_seen, last_seen, total_ticks}

Example

curl "https://api.polydata.live/v1/markets?limit=5"
{
  "success": true,
  "data": [
    {
      "market": "0x05606cb15b475ef61ddba6881978c65efa8584ab02994a5f4e1e7093db4d28d6",
      "asset_id": "23148412749026435776909805202107690906956736206326933282544938354875668913297",
      "side": "YES",
      "first_seen": "2026-04-15 08:00:00.035",
      "last_seen": "2026-04-15 08:07:56.836",
      "total_ticks": 212917
    }
  ],
  "meta": { "count": 5, "offset": 0, "limit": 5 }
}