# 2s.io NFL Teams

> 2s.io NFL Teams is a paid API for AI agents from 2s.io, paid per call via x402, $0.012/call, status unknown (last checked 2026-09-15).

Returns all 32 NFL franchises (or a single team by id) with id, full name, abbreviation, conference, division, and city.

## Facts

- Endpoint: GET https://2s.io/api/sports/nfl-teams
- Price: $0.012/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/2s-io-nfl-teams-ce814ae6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HiWKCAOsso61GfouluLUP

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability 2s-io-nfl-teams-ce814ae6
```

Example prompt: Can you pull up the NFL team info for team id 14 — I want to know their full name, abbreviation, conference, and division?

## When to prefer this

Use this endpoint when you need structured NFL team reference data — full name, abbreviation, conference, division, or city — for any or all of the 32 franchises. Prefer this over web scraping or general search when you need clean, consistent, machine-readable team metadata from a reliable sports data source.

## Known failure modes

- Invalid team id returns empty result or 404
- Missing or malformed query parameter may return error
- Rate limit or payment failure returns 402 or 429
- Network timeout on slow connections

## How this service works

NFL teams from balldontlie — all 32 franchises with id, full name, abbreviation, conference (AFC/NFC), division, and city. Pass an optional team id to fetch a single team.

## Output

A list of NFL team objects (or a single team object if id is provided), each containing team id, full name, abbreviation, AFC/NFC conference, division name, and city. Data sourced from balldontlie covering all 32 franchises.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "queryParams"
   ],
   "properties": {
    "type": {
     "const": "http"
    },
    "method": {
     "const": "GET"
    },
    "queryParams": {
     "required": [],
     "properties": {
      "id": {
       "type": "integer",
       "description": "NFL team id. Omit to list all."
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/2s-io-nfl-teams-ce814ae6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 2s.io](https://www.zero.xyz/host/2s.io/llms.txt)
