Matches

Map veto (pick/ban) sequence for one match

The match's map pick/ban sequence in veto order (a CS2 bo3 runs ban/ban/pick/pick/ban/ban/decider). The decider step carries a null `team_id` — no team makes that choice. Unknown match id yields an empty list. Enveloped: `{"data": [MapVeto, ...], "meta": {...}}` (not cursor-paginated; `next_cursor` is null).

GET
/v1/{game}/matches/{id}/vetoes

The match's map pick/ban sequence in veto order (a CS2 bo3 runs ban/ban/pick/pick/ban/ban/decider). The decider step carries a null team_id — no team makes that choice. Unknown match id yields an empty list. Enveloped: {"data": [MapVeto, ...], "meta": {...}} (not cursor-paginated; next_cursor is null).

Authorization

AuthorizationBearer <token>

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*string

Game slug. cs2 is the only populated title today; an un-onboarded game 404s cleanly.

id*string

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/vetoes"
{  "data": [    {      "id": "019f8b9c-e73c-785d-a104-8f7855172263",      "match_id": "019f3d18-c15f-7319-81a7-343e8a80a578",      "order": 1,      "team_id": "019f2858-e253-7f3d-bdff-bc7738bd1036",      "choice_type": "ban",      "map_name": "de_ancient",      "created_at": "2026-07-22T20:56:17.928167Z"    },    {      "id": "019f8b9c-e73c-78c4-a84a-ae52027f0176",      "match_id": "019f3d18-c15f-7319-81a7-343e8a80a578",      "order": 2,      "team_id": "019f23d1-fb5c-7940-be14-c8b28e2d90e8",      "choice_type": "ban",      "map_name": "de_anubis",      "created_at": "2026-07-22T20:56:17.928167Z"    },    {      "id": "019f8b9c-e73c-70f1-b920-affde0fc6360",      "match_id": "019f3d18-c15f-7319-81a7-343e8a80a578",      "order": 3,      "team_id": "019f2858-e253-7f3d-bdff-bc7738bd1036",      "choice_type": "pick",      "map_name": "de_mirage",      "created_at": "2026-07-22T20:56:17.928167Z"    }  ],  "meta": {    "count": 7,    "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": "not_found",    "message": "not found",    "request_id": "019f3d18-c15f-7319-81a7-343e8a80a578"  }}