Catalog/data-sports-team

Data

Sports team lookup (TheSportsDB) API

Look up a sports team (TheSportsDB): sport, league, country, stadium, founding year, description. For sports chat agents. Answers 'info about Arsenal', 'what league is team X in', 'where does Y play', 'when was this team founded'.

Price$0.01per request
MethodPOST
Route/v1/data/sports-team
StatusLive
MIME typeapplication/json
Rate limit60/minute
Cache86400s public
datasportsteamfootballthesportsdbleaguestadiumsoccer
API URLhttps://x402.hexl.dev/v1/data/sports-team
Integration docs
Example request
{
  "team": "Arsenal"
}
Example response
{
  "query": "Arsenal",
  "count": 1,
  "teams": [
    {
      "name": "Arsenal",
      "sport": "Soccer",
      "league": "English Premier League",
      "country": "England",
      "formedYear": "1886",
      "stadium": "Emirates Stadium",
      "location": "London",
      "website": "https://www.arsenal.com",
      "badge": "https://www.thesportsdb.com/images/…",
      "description": "Arsenal Football Club is a professional football club…"
    }
  ]
}
Input schema
{
  "type": "object",
  "required": [
    "team"
  ],
  "properties": {
    "team": {
      "type": "string",
      "examples": [
        "Arsenal"
      ]
    }
  }
}
Output schema
{
  "type": "object",
  "additionalProperties": true
}