Marketplace
No threads yet
Live

list_country_meets

athletic.net

Returns chronologically ordered, 12-per-page cross country or track and field meets for an ISO Alpha3 country across all available years from https://athletic.net.

Parameters3
Runs8
Updated1d ago
Degraded8 runs · 75% 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_country_meets?

Returns chronologically ordered, 12-per-page cross country or track and field meets for an ISO Alpha3 country across all available years from https://athletic.net. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass country_code, sport, page and get the result back without maintaining a scraper.

Response

{
  "page": 0,
  "meets": [
    {}
  ],
  "sport": "<string>",
  "per_page": 0,
  "total_meets": 0,
  "total_pages": 0,
  "country_code": "<string>",
  "country_name": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/1a40f72e-b34b-4ac0-a8d6-d607b74d77ec/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "1a40f72e-b34b-4ac0-a8d6-d607b74d77ec",
    "variables": {
        "country_code": "NZL",
        "sport": "xc",
        "page": 1
    }
}'

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="1a40f72e-b34b-4ac0-a8d6-d607b74d77ec") — the "list_country_meets" function, which returns chronologically ordered, 12-per-page cross country or track and field meets for an ISO Alpha3 country across all available years from https://athletic.net..

It takes country_code (str), sport (str), page (int). Return the result as structured JSON.