Marketplace
No threads yet
Live

get_current_week

nfl.com

Returns the NFL season, week number, season and week types, date range, and bye-team details for the current date or a supplied date from https://nfl.com.

Parameters1
Runs12
Updated10d ago
Operational12 runs · 100% 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 get_current_week?

Returns the NFL season, week number, season and week types, date range, and bye-team details for the current date or a supplied date from https://nfl.com. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass date and get the result back without maintaining a scraper.

Response

{
  "week": 0,
  "season": 0,
  "dateEnd": "<string>",
  "byeTeams": [
    {
      "id": "<string>",
      "fullName": "<string>",
      "currentLogo": "<string>"
    }
  ],
  "weekType": "<string>",
  "dateBegin": "<string>",
  "seasonType": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/b9d2b07c-935c-44d6-84af-706f786f3455/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "b9d2b07c-935c-44d6-84af-706f786f3455",
    "variables": {
        "date": ""
    }
}'

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="b9d2b07c-935c-44d6-84af-706f786f3455") — the "get_current_week" function, which returns the NFL season, week number, season and week types, date range, and bye-team details for the current date or a supplied date from https://nfl.com..

It takes date (str). Return the result as structured JSON.