# Sports Team Profile Lookup

> Sports Team Profile Lookup is a paid API for AI agents from payai.agentstools.dev, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Returns a normalized team profile (record, venue, country, founding year, recent form) for a given team in MLB, NHL, NFL, NBA, or EPL

## Facts

- Endpoint: GET https://payai.agentstools.dev/sports/team
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sports-team-profile-lookup-654fc37c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Bemjl0FZrLxzYZzIWWhAh

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 sports-team-profile-lookup-654fc37c
```

Example prompt: Can you pull up the team profile for Arsenal in the EPL — I want to see their current record, home venue, year founded, and recent form?

## When to prefer this

Use this endpoint when you need a quick, normalized team profile fused from multiple authoritative sports data sources for one of the five supported major leagues (MLB, NHL, NFL, NBA, EPL). It is ideal when you want a single structured JSON response covering record, venue, founding year, country, and recent form without having to query ESPN, official league APIs, and TheSportsDB separately. Prefer this over general web search when structured, machine-readable sports data is needed for downstream processing or display.

## Known failure modes

- Team name or abbreviation not recognized — returns error if team cannot be matched to the specified league
- Unsupported league key — only mlb, nhl, nfl, nba, epl are accepted; other leagues return validation error
- Recent form data may be unavailable for some teams mid-season or in offseason
- Ambiguous team name (e.g. a city with multiple teams across leagues) may require disambiguation via the league parameter
- Network or upstream API failure from ESPN or TheSportsDB may result in partial data or timeout

## How this service works

Team profile for a major sports league, normalized to one cited JSON. Give a league and a team name or abbreviation and get the team's record, home venue, country, year founded and recent form where available. Fused from official league APIs, ESPN and TheSportsDB.

## Output

A normalized JSON object containing the team's win-loss record, home venue name, country, year founded, and recent form (e.g. last 5 results), with citations indicating which source (official league API, ESPN, or TheSportsDB) contributed each data point.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "league"
     ],
     "properties": {
      "name": {
       "type": "string",
       "description": "Alias for team"
      },
      "team": {
       "type": "string",
       "description": "Team name or abbreviation, such as Arsenal or NYY."
      },
      "league": {
       "enum": [
        "mlb",
        "nhl",
        "nfl",
        "nba",
        "epl"
       ],
       "type": "string",
       "description": "League key. One of the supported major leagues."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/sports-team-profile-lookup-654fc37c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from payai.agentstools.dev](https://www.zero.xyz/host/payai.agentstools.dev/llms.txt)
