Match Settlements
Settlement audit log scoped to one match
GET
/
cs2
/
v1
/
matches
/
{match_id}
/
settlements
Settlement log for one CS2 match
curl --request GET \
--url https://ticktock.bet/cs2/v1/matches/{match_id}/settlements \
--header 'X-API-Key: <api-key>'import requests
url = "https://ticktock.bet/cs2/v1/matches/{match_id}/settlements"
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}/settlements', 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}/settlements",
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}/settlements"
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}/settlements")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://ticktock.bet/cs2/v1/matches/{match_id}/settlements")
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": 481234,
"market_offer_id": "ofr_abc",
"outcome": "won",
"settled_by": "engine",
"created_at": "2026-05-10T18:32:14+00:00"
}
],
"meta": {
"count": 1
}
}{
"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
The same shape as the global Settlement Log, filtered to a single match. Use it when investigating a specific dispute or auditing one event end-to-end.Required scope
- Minimum:
cs2:markets:settlements
Example
curl -H "X-API-Key: $TT_KEY" \
"https://ticktock.bet/cs2/v1/matches/52ef…/settlements"
Authorizations
XAPIKeyHeaderXAccessTokenHeaderUOFAccessTokenHeader
Tenant API key issued during onboarding
Path Parameters
Query Parameters
Required range:
1 <= x <= 1000Response
Successful Response
The response is of type Response List Match Settlements Cs2 V1 Matches Match Id Settlements Get · object.
Last modified on May 10, 2026
⌘I
Settlement log for one CS2 match
curl --request GET \
--url https://ticktock.bet/cs2/v1/matches/{match_id}/settlements \
--header 'X-API-Key: <api-key>'import requests
url = "https://ticktock.bet/cs2/v1/matches/{match_id}/settlements"
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}/settlements', 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}/settlements",
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}/settlements"
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}/settlements")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://ticktock.bet/cs2/v1/matches/{match_id}/settlements")
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": 481234,
"market_offer_id": "ofr_abc",
"outcome": "won",
"settled_by": "engine",
"created_at": "2026-05-10T18:32:14+00:00"
}
],
"meta": {
"count": 1
}
}{
"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)"
}