Skip to main content
GET
/
api
/
v1
/
sports
/
{sportID}
/
teams
Get teams for a sport
curl --request GET \
  --url 'https://therundown.io/api/v1/sports/{sportID}/teams?key='
{
  "teams": [
    {
      "team_id": 11,
      "name": "Atlanta",
      "mascot": "Hawks",
      "abbreviation": "ATL",
      "record": "26-30"
    },
    {
      "team_id": 1,
      "name": "Boston",
      "mascot": "Celtics",
      "abbreviation": "BOS",
      "record": "35-19"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.therundown.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

key
string
query
required

API key as query parameter

Path Parameters

sportID
integer
required

Sport ID. Common values: 1=NCAAF, 2=NFL, 3=MLB, 4=NBA, 5=NCAAB, 6=NHL, 7=UFC, 8=WNBA, 9=CFL, 10=MLS, 11=EPL, 16=UEFA Champions League

Response

200 - application/json

Teams

teams
object[]