Catalog/sports-mlb-team

Data

MLB team profile API

MLB team profile by numeric team id with name, abbreviation, location, venue, league, division, and founding year, normalized from the keyless MLB Stats API. Answers queries like 'Yankees team info', 'where do the Dodgers play', 'what division is team 147 in'.

Price$0.01per request
MethodPOST
Route/v1/data/sports-mlb-team
StatusLive
MIME typeapplication/json
Rate limit60/minute
Cache3600s public
sportsmlbbaseballteamvenuedivisionstatsapiprofile
API URLhttps://x402.hexl.dev/v1/data/sports-mlb-team
Integration docs
Example request
{
  "teamId": 147
}
Example response
{
  "found": true,
  "teamId": 147,
  "name": "New York Yankees",
  "abbreviation": "NYY",
  "location": "Bronx",
  "venue": "Yankee Stadium",
  "league": "American League",
  "division": "American League East",
  "firstYearOfPlay": "1903",
  "active": true
}
Input schema
{
  "type": "object",
  "required": [
    "teamId"
  ],
  "properties": {
    "teamId": {
      "type": [
        "number",
        "string"
      ],
      "examples": [
        147
      ]
    }
  }
}
Output schema
{
  "type": "object",
  "additionalProperties": true
}