A team's per-map win/loss record
The team's aggregate record on each map it has a completed result on, best win rate first. Raw counts (`played`, `wins`); the win rate is `wins / played`. Enveloped `{"data": [TeamMapStat, ...], "meta": {...}}` (not cursor-paginated).
The team's aggregate record on each map it has a completed result on, best win rate first. Raw counts (played, wins); the win rate is wins / played. Enveloped {"data": [TeamMapStat, ...], "meta": {...}} (not cursor-paginated).
Primary auth (live). Authorization: Bearer <api-key> — the header takes precedence over the query fallback. The raw key is hashed (SHA-256, hex) and looked up in api.keys.key_hash; the raw value is never stored.
In: header
Path Parameters
Game slug. cs2 is the only populated title today; an un-onboarded game 404s cleanly.
Resource identifier — either a UUID or the resource's human-readable slug, scoped to {game}. /v1/cs2/teams/natus-vincere and /v1/cs2/teams/019f23d1-fb5c-7987-b522-47c3a5e72111 address the same row, so you can go straight from a slug you already have without first looking up its id.
Slugs work on teams, players and tournaments. Matches have no slug, so a match id must be a UUID. Either way, an identifier that resolves to nothing returns 404 not_found.
Response Body
application/json
application/json
application/json
curl -X GET "https://example.com/v1/cs2/teams/019f2858-e253-7f3d-bdff-bc7738bd1036/maps"{ "data": [ { "map_name": "de_anubis", "played": 60, "wins": 39 }, { "map_name": "de_mirage", "played": 133, "wins": 83 }, { "map_name": "de_cache", "played": 5, "wins": 3 } ], "meta": { "count": 10, "next_cursor": null }}{ "error": { "code": "not_found", "message": "not found", "request_id": "019f3d18-c15f-7319-81a7-343e8a80a578" }}{ "error": { "code": "not_found", "message": "not found", "request_id": "019f3d18-c15f-7319-81a7-343e8a80a578" }}A team's recent completed results (form) GET
Recent completed matches, newest first, from the team's own perspective (won + series map score for/against). `limit` default 10, max 50. Enveloped `{"data": [TeamFormResult, ...], "meta": {...}}` (not cursor-paginated).
A team's Glicko-2 rating history GET
The team's own computed Glicko-2 rating over time (one point per played match), oldest→newest for a left-to-right chart. `limit` default 30, max 200. Enveloped `{"data": [TeamRatingPoint, ...], "meta": {...}}` (not cursor-paginated).