get_games
nfl.comReturns NFL game schedules for a season, season type, and optional week from https://nfl.com, including teams, scores, venues, broadcasts, and ticket links. If week is omitted, it returns all weeks for that season type.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_games?
Returns NFL game schedules for a season, season type, and optional week from https://nfl.com, including teams, scores, venues, broadcasts, and ticket links. If week is omitted, it returns all weeks for that season type. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass season, season_type, week and get the result back without maintaining a scraper.
Response
{
"week": 0,
"count": 0,
"games": [
{}
],
"weeks": [
0
],
"season": 0,
"seasonType": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/78759773-e5fe-4d1f-ab75-6cccf568a6da/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "78759773-e5fe-4d1f-ab75-6cccf568a6da",
"variables": {
"season": 2026,
"season_type": "PRE",
"week": null
}
}'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="78759773-e5fe-4d1f-ab75-6cccf568a6da") — the "get_games" function, which returns NFL game schedules for a season, season type, and optional week from https://nfl.com, including teams, scores, venues, broadcasts, and ticket links. If week is omitted, it returns all weeks for that season type.. It takes season (int), season_type (str), week (int | None). Return the result as structured JSON.