Live
search_events
polymarket.comSearches https://polymarket.com events by keyword and returns matching events with market details, prices, status, and pagination availability.
Parameters3
Runs8
Updated3d ago
Operational8 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 search_events?
Searches https://polymarket.com events by keyword and returns matching events with market details, prices, status, and pagination availability. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, limit, locale and get the result back without maintaining a scraper.
Response
{
"query": "<string>",
"events": [
{}
],
"has_more": true,
"returned": 0,
"total_results": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/fe500a56-f9ee-4dff-bfeb-1ff2780d842c/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "fe500a56-f9ee-4dff-bfeb-1ff2780d842c",
"variables": {
"query": "bitcoin",
"limit": 5,
"locale": "en"
}
}'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="fe500a56-f9ee-4dff-bfeb-1ff2780d842c") — the "search_events" function, which searches https://polymarket.com events by keyword and returns matching events with market details, prices, status, and pagination availability.. It takes query (str), limit (int), locale (str). Return the result as structured JSON.