Live
list_trending_markets
gamma-api.polymarket.comReturns currently trending events from https://polymarket.com sorted by 24-hour volume, with odds, liquidity, categories, and complete market details.
Parameters1
Runs7
Updated3d ago
Operational7 runs · 100% succeeded
30 days ago90 days agoranfailednot checkedtoday
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is list_trending_markets?
Returns currently trending events from https://polymarket.com sorted by 24-hour volume, with odds, liquidity, categories, and complete market details. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass limit and get the result back without maintaining a scraper.
Response
{
"events": [
{}
],
"has_more": true,
"returned": 0,
"sorted_by": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/4a177135-e0a6-4c9c-8beb-920b3026fe3a/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "4a177135-e0a6-4c9c-8beb-920b3026fe3a",
"variables": {
"limit": 3
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="4a177135-e0a6-4c9c-8beb-920b3026fe3a") — the "list_trending_markets" function, which returns currently trending events from https://polymarket.com sorted by 24-hour volume, with odds, liquidity, categories, and complete market details.. It takes limit (int). Return the result as structured JSON.