search_axs_entities
axs.comSearches events, performers, and venues on https://axs.com by keyword, category, and location. Returns flattened records with per-type totals and supports pagination via page.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_axs_entities?
Searches events, performers, and venues on https://axs.com by keyword, category, and location. Returns flattened records with per-type totals and supports pagination via page. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass keyword, category, location, page, results_per_type, latitude, longitude, country_code and get the result back without maintaining a scraper.
Response
{
"page": 0,
"keyword": "<string>",
"records": [
{}
],
"category": "<string>",
"location": "<string>",
"geo_context": {},
"records_in_page": {
"events": 0,
"venues": 0,
"performers": 0,
"all_records": 0
},
"results_per_type": 0,
"resolved_location": {},
"totals_from_source": {
"events": 0,
"venues": 0,
"performers": 0,
"all_records": 0
}
}Call it
curl --location 'https://us-prod.notte.cc/functions/8aa2dd6d-7abd-4a38-a031-7d0593f05731/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "8aa2dd6d-7abd-4a38-a031-7d0593f05731",
"variables": {
"keyword": "concert",
"category": "",
"location": "",
"page": 1,
"results_per_type": 30,
"latitude": 0.0,
"longitude": 0.0,
"country_code": ""
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="8aa2dd6d-7abd-4a38-a031-7d0593f05731") — the "search_axs_entities" function, which searches events, performers, and venues on https://axs.com by keyword, category, and location. Returns flattened records with per-type totals and supports pagination via page.. It takes keyword (str), category (str), location (str), page (int), results_per_type (int), latitude (float), longitude (float), country_code (str). Return the result as structured JSON.