Data
Teams & catalog
Browse teams, players, leagues, and tournaments, or search across them with one query.
Endpoints
| Method | Path | Notes |
|---|---|---|
| GET | /teams | List / filter by game |
| GET | /teams/:id | Team + roster + recent / upcoming matches |
| GET | /players | List players |
| GET | /players/:id | Player + team + match lists |
| GET | /leagues | Leagues (+ nested tournaments) |
| GET | /tournaments | Tournaments (+ league) |
| GET | /search?q= | Teams, players, leagues, tournaments |
Search example
GET /v1/search?q=spirit
{
"data": {
"teams": [ … ],
"players": [ … ],
"leagues": [ … ],
"tournaments": [ … ]
}
}Team/player detail match lists are slim (no nested maps dump). Use GET /matches/:id when you need map scores and box scores.