get_teams
nfl.comReturns all 32 NFL teams for a season with identifiers, names, conference and division, logos, colors, venue, social links, official sites, shop links, founding year, and ownership from https://nfl.com. If no season is supplied, it uses the current NFL season.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_teams?
Returns all 32 NFL teams for a season with identifiers, names, conference and division, logos, colors, venue, social links, official sites, shop links, founding year, and ownership from https://nfl.com. If no season is supplied, it uses the current NFL season. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass season and get the result back without maintaining a scraper.
Response
{
"teams": [
{
"id": "<string>",
"league": "<string>",
"owners": "<string>",
"season": "<string>",
"venues": [
{
"id": "<string>",
"city": "<string>",
"name": "<string>",
"country": "<string>"
}
],
"socials": [
{
"link": "<string>",
"platform": "<string>"
}
],
"fullName": "<string>",
"location": "<string>",
"nickName": "<string>",
"teamType": "<string>",
"nflShopUrl": "<string>",
"currentLogo": "<string>",
"abbreviation": "<string>",
"primaryColor": "<string>",
"conferenceAbbr": "<string>",
"secondaryColor": "<string>",
"yearEstablished": 0,
"divisionFullName": "<string>",
"conferenceFullName": "<string>",
"officialWebsiteUrl": "<string>"
}
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/b6d00aea-cbde-4112-8129-319daa35fc34/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "b6d00aea-cbde-4112-8129-319daa35fc34",
"variables": {
"season": 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="b6d00aea-cbde-4112-8129-319daa35fc34") — the "get_teams" function, which returns all 32 NFL teams for a season with identifiers, names, conference and division, logos, colors, venue, social links, official sites, shop links, founding year, and ownership from https://nfl.com. If no season is supplied, it uses the current NFL season.. It takes season (int | None). Return the result as structured JSON.