list_marketsList Polymarket marketsRead-only
List tracked Polymarket markets with current YES/NO prices, 24h change, volume and liquidity. Optionally filter by category or a text search on the question.
| Parameter | Type | Notes |
|---|---|---|
| search | string | null | Text matched inside the market question. |
| category | string | null | Category filter, e.g. Politics or Crypto. |
| limit | integer | null | 1–100, default 20. |
Example request
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "list_markets",
"arguments": {
"search": "election",
"category": null,
"limit": 5
}
}
}Example result
{
"markets": [
{
"id": "0x9f3c…",
"question": "Will the incumbent win the 2026 election?",
"category": "Politics",
"outcome_yes": 0.62,
"outcome_no": 0.38,
"change_24h": 3.4,
"volume": 12850000,
"volume_24h": 415000,
"liquidity": 220000,
"end_date": "2026-11-03T23:59:00Z"
}
]
}