Get Match Rounds
Per-round metadata for one match — winner, side, score, win reason, bomb site
GET
/
cs2
/
v1
/
matches
/
{match_id}
/
rounds
Round-by-round metadata (no per-event detail)
curl --request GET \
--url https://ticktock.bet/cs2/v1/matches/{match_id}/rounds \
--header 'X-API-Key: <api-key>'import requests
url = "https://ticktock.bet/cs2/v1/matches/{match_id}/rounds"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://ticktock.bet/cs2/v1/matches/{match_id}/rounds', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://ticktock.bet/cs2/v1/matches/{match_id}/rounds",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://ticktock.bet/cs2/v1/matches/{match_id}/rounds"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://ticktock.bet/cs2/v1/matches/{match_id}/rounds")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://ticktock.bet/cs2/v1/matches/{match_id}/rounds")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": {
"id": "52ef0d9c-7c1f-4c4e-9b3a-4a5e2f8b1c10",
"team_a": "Sashi",
"team_b": "OG",
"team_a_logo": "https://images.ticktock.bet/teams/sashi.png",
"team_b_logo": "https://images.ticktock.bet/teams/og.png",
"hltv_event_id": 7438,
"team_a_hltv_id": 7187,
"team_b_hltv_id": 5995,
"event": "ESL Pro League S20",
"bo_type": "bo3",
"status": "live",
"scheduled_at": "2026-05-10T17:00:00+00:00",
"score_a": 1,
"score_b": 0,
"map_name": "de_mirage"
}
}{
"detail": "Missing X-API-Key or $x$access-token header"
}{
"detail": "Required scope 'cs2:matches:detail' is not granted to this API key. Contact your account manager to extend the key's scopes."
}{
"detail": "Match not found"
}{
"detail": [
{
"type": "enum",
"loc": [
"query",
"time_filter"
],
"msg": "Input should be one of: 3m, 6m, 1y, all",
"input": "2w"
}
]
}{
"detail": "Rate limit exceeded (600 req/min)"
}What it returns
Round-by-round detail for the requested match: round number, winner, winning side (CT/T), score after the round, win reason (kills / bomb / time / defuse), and bomb site when applicable. Use this for grading bets, building post-match round breakdowns, or reconciling against your own scorebot.Required scope
- Minimum:
cs2:matches:detail
Example
curl -H "X-API-Key: $TT_KEY" \
"https://ticktock.bet/cs2/v1/matches/52ef…/rounds"
Last modified on May 10, 2026
Previous
Match PlayersPer-player per-map stats for one match — kills, deaths, opening duels, multi-kills, ADR, KAST, Rating
Next
⌘I
Round-by-round metadata (no per-event detail)
curl --request GET \
--url https://ticktock.bet/cs2/v1/matches/{match_id}/rounds \
--header 'X-API-Key: <api-key>'import requests
url = "https://ticktock.bet/cs2/v1/matches/{match_id}/rounds"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://ticktock.bet/cs2/v1/matches/{match_id}/rounds', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://ticktock.bet/cs2/v1/matches/{match_id}/rounds",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://ticktock.bet/cs2/v1/matches/{match_id}/rounds"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://ticktock.bet/cs2/v1/matches/{match_id}/rounds")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://ticktock.bet/cs2/v1/matches/{match_id}/rounds")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": {
"id": "52ef0d9c-7c1f-4c4e-9b3a-4a5e2f8b1c10",
"team_a": "Sashi",
"team_b": "OG",
"team_a_logo": "https://images.ticktock.bet/teams/sashi.png",
"team_b_logo": "https://images.ticktock.bet/teams/og.png",
"hltv_event_id": 7438,
"team_a_hltv_id": 7187,
"team_b_hltv_id": 5995,
"event": "ESL Pro League S20",
"bo_type": "bo3",
"status": "live",
"scheduled_at": "2026-05-10T17:00:00+00:00",
"score_a": 1,
"score_b": 0,
"map_name": "de_mirage"
}
}{
"detail": "Missing X-API-Key or $x$access-token header"
}{
"detail": "Required scope 'cs2:matches:detail' is not granted to this API key. Contact your account manager to extend the key's scopes."
}{
"detail": "Match not found"
}{
"detail": [
{
"type": "enum",
"loc": [
"query",
"time_filter"
],
"msg": "Input should be one of: 3m, 6m, 1y, all",
"input": "2w"
}
]
}{
"detail": "Rate limit exceeded (600 req/min)"
}