Live
list_scores_by_state_sport
maxpreps.comReturns the nearest current or upcoming game day from https://maxpreps.com for a sport and state, with teams, records, scores, status, sections, and game links.
Parameters3
Runs6
Updated3d ago
Operational6 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 list_scores_by_state_sport?
Returns the nearest current or upcoming game day from https://maxpreps.com for a sport and state, with teams, records, scores, status, sections, and game links. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass state_code, sport, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"games": [
{}
],
"sport": "<string>",
"heading": "<string>",
"game_date": "<string>",
"game_count": 0,
"page_title": "<string>",
"source_url": "<string>",
"state_code": "<string>",
"status_counts": {}
}Call it
curl --location 'https://us-prod.notte.cc/functions/64651ebd-e880-41d9-95b7-721731ff5bc8/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "64651ebd-e880-41d9-95b7-721731ff5bc8",
"variables": {
"state_code": "CA",
"sport": "football",
"timeout_seconds": 45
}
}'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="64651ebd-e880-41d9-95b7-721731ff5bc8") — the "list_scores_by_state_sport" function, which returns the nearest current or upcoming game day from https://maxpreps.com for a sport and state, with teams, records, scores, status, sections, and game links.. It takes state_code (str), sport (str), timeout_seconds (int). Return the result as structured JSON.