# Sports Team Profile Lookup

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

Returns normalized team profile for a given league and team, including record, home venue, country, year founded, and recent form

## Facts

- Endpoint: GET https://api.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-47646608
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_q7iUfarnAYdKYag5ubZlP

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-47646608
```

Example prompt: What's the current record, home venue, and year founded for the Arsenal in the EPL?

## When to prefer this

Use this endpoint when you need a quick, normalized team profile snapshot for one of the five supported major leagues (MLB, NHL, NFL, NBA, EPL) and want a single fused response combining record, venue, founding info, and recent form without querying multiple sports APIs yourself.

## Known failure modes

- Invalid or unsupported league key returns an error — only mlb, nhl, nfl, nba, epl are supported
- Team name or abbreviation not recognized returns a not-found or empty result
- Missing required 'league' query parameter returns a validation error
- External source data unavailable may result in partial or stale team profile

## 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 of origin, year founded, and recent form data where available, fused from official league APIs, ESPN, and TheSportsDB.

## 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-47646608/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.agentstools.dev](https://www.zero.xyz/host/api.agentstools.dev/llms.txt)
