Round-by-round team stats for one match
Per-team, per-round CS2 breakdown — two rows per round (one per team): side, win, economy, equipment, opening duels, trades, clutches, bomb events, KAST, utility. Ordered by map number, then round number, then side. Team-level (not per-player). Unknown match id yields an empty list. Enveloped: `{"data": [RoundTeamStat, ...], "meta": {...}}` (not cursor-paginated; `next_cursor` is null).
Per-team, per-round CS2 breakdown — two rows per round (one per team): side, win, economy, equipment, opening duels, trades, clutches, bomb events, KAST, utility. Ordered by map number, then round number, then side. Team-level (not per-player). Unknown match id yields an empty list. Enveloped: {"data": [RoundTeamStat, ...], "meta": {...}} (not cursor-paginated; next_cursor is null).
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
application/json
curl -X GET "https://example.com/v1/cs2/matches/019f2858-e253-7f3d-bdff-bc7738bd1036/rounds"{ "data": [ { "id": "01a0b9d0-982b-79b6-a93e-12d9264b8fee", "match_id": "01a0a3e2-96a5-7a9f-8af2-fae0f1a7d678", "map_number": 1, "round_number": 1, "team_id": "019f2858-e255-78e4-9e7c-32f307dfac91", "team_side": "ct", "won": true, "economy_level": -1, "equipment_value": 4000, "enemy_equipment_value": 4400, "money_spent": 3400, "kills": 5, "deaths": 0, "assists": 0, "damage": 500, "headshots": 5, "first_kills": 1, "first_deaths": 0, "trade_kills": 0, "trade_deaths": 0, "clutches": 0, "clutch_attempts": 0, "bomb_plants": 0, "bomb_defuses": 0, "flash_assists": 0, "utility_value": 0, "kast": 5, "pistol_round": true, "end_reason": "CTWin", "round_duration_ms": 48078, "created_at": "2026-09-19T13:18:03.676691Z" }, { "id": "01a0b9d0-982b-747a-bbee-7ff4ecf095b1", "match_id": "01a0a3e2-96a5-7a9f-8af2-fae0f1a7d678", "map_number": 1, "round_number": 1, "team_id": "01a0916e-90e4-7469-903a-463c4fc69c4b", "team_side": "t", "won": false, "economy_level": -1, "equipment_value": 4400, "enemy_equipment_value": 4000, "money_spent": 0, "kills": 0, "deaths": 5, "assists": 0, "damage": 88, "headshots": 0, "first_kills": 0, "first_deaths": 1, "trade_kills": 0, "trade_deaths": 0, "clutches": 0, "clutch_attempts": 1, "bomb_plants": 0, "bomb_defuses": 0, "flash_assists": 0, "utility_value": 200, "kast": 0, "pistol_round": true, "end_reason": "CTWin", "round_duration_ms": 48078, "created_at": "2026-09-19T13:18:03.676691Z" } ], "meta": { "count": 70, "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" }}{ "error": { "code": "rate_limited", "message": "rate limit exceeded", "request_id": "019f3d18-c15f-7319-81a7-343e8a80a578" }}Per-map scores for one match GET
Map-by-map results (half/overtime splits included when known), ordered by map number. Unknown match id yields an empty list. Enveloped: `{"data": [MapResult, ...], "meta": {...}}` (not cursor-paginated; `next_cursor` is null).
Per-player performance stats for one match GET
Player stat lines — whole-match aggregates (null map_number) first, then per-map rows. Ratings are our own proprietary computation. Enveloped: `{"data": [PlayerMatchStats, ...], "meta": {...}}` (not cursor-paginated; `next_cursor` is null).