# Suverse Sports Team Lookup

> Suverse Sports Team Lookup is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-16).

Look up a sports team by name and retrieve its ID, league, sport, founded year, stadium, and country from TheSportsDB.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-sports-team
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-sports-team-lookup-d673fbd5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2dWMOI_se-3YbkeUdKMln

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 suverse-sports-team-lookup-d673fbd5 -d '<json body>'
```

Example prompt: Can you look up the sports team profile for 'Manchester United' — I need their TheSportsDB ID, league, stadium, and the year they were founded?

## When to prefer this

Use this endpoint when you need to resolve a sports team name to structured metadata (ID, league, sport, stadium, country, founded year) across multiple sports including soccer, basketball, baseball, and American football. Prefer this over general web search when you need machine-readable, normalized team data for downstream enrichment or ID resolution workflows.

## Known failure modes

- Team name not found — returns empty or null result if the name doesn't match any team in TheSportsDB
- Ambiguous team names may return the wrong team if multiple teams share similar names
- Non-English or alternate team name spellings may fail to match
- Network or upstream TheSportsDB API errors may return 5xx responses
- Malformed request body returns 400 validation error

## How this service works

Profile lookup for any sports team by name across soccer, basketball, baseball, American football and more from TheSportsDB: id, league, sport, formed year, stadium, country. For AI agents enriching sports queries and resolving team names to ids.

## Output

Returns structured team profile data sourced from TheSportsDB, including the team's unique ID, league name, sport type, year formed, home stadium, and country of origin.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "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/suverse-sports-team-lookup-d673fbd5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
