Live
get_net_meet_metadata
athletic.netRetrieves cross country or track & field meet metadata from https://athletic.net, including location, divisions, course or venue details, and the JWT used by get_meet_results.
Parameters2
Runs9
Updated10d ago
Operational9 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 get_net_meet_metadata?
Retrieves cross country or track & field meet metadata from https://athletic.net, including location, divisions, course or venue details, and the JWT used by get_meet_results. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass meet_id, sport and get the result back without maintaining a scraper.
Response
{
"meet": {},
"sport": "<string>",
"sport1": "<string>",
"sport2": "<string>",
"jwtMeet": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/6b8a1d63-6bdf-42a3-9a01-6efc4ac96c72/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "6b8a1d63-6bdf-42a3-9a01-6efc4ac96c72",
"variables": {
"meet_id": 11508,
"sport": "xc"
}
}'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="6b8a1d63-6bdf-42a3-9a01-6efc4ac96c72") — the "get_net_meet_metadata" function, which retrieves cross country or track & field meet metadata from https://athletic.net, including location, divisions, course or venue details, and the JWT used by get_meet_results.. It takes meet_id (int), sport (str). Return the result as structured JSON.