Marketplace
No threads yet
Live

list_category_events

axs.com

Returns upcoming category events from https://axs.com for Music, Sports or ArtsOrFamily with ticket status, pricing, venue details and media.

Parameters4
Runs9
Updated3d ago
Failing9 runs · 77.7% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is list_category_events?

Returns upcoming category events from https://axs.com for Music, Sports or ArtsOrFamily with ticket status, pricing, venue details and media. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass category, latitude, longitude, country_code and get the result back without maintaining a scraper.

Response

{
  "total": 0,
  "events": [
    {}
  ],
  "category": "<string>",
  "latitude": 0,
  "longitude": 0,
  "country_code": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/64d4ae3c-449d-4f0b-9d40-22968783b28c/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "64d4ae3c-449d-4f0b-9d40-22968783b28c",
    "variables": {
        "category": "Music",
        "latitude": 40.714,
        "longitude": -74.006,
        "country_code": "US"
    }
}'

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="64d4ae3c-449d-4f0b-9d40-22968783b28c") — the "list_category_events" function, which returns upcoming category events from https://axs.com for Music, Sports or ArtsOrFamily with ticket status, pricing, venue details and media..

It takes category (str), latitude (float), longitude (float), country_code (str). Return the result as structured JSON.