Skip to main content
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>'
{
  "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
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.ticktock.bet/llms.txt

Use this file to discover all available pages before exploring further.

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

X-API-Key
string
header
required

Tenant API key issued during onboarding

Path Parameters

match_id
string
required

Query Parameters

limit
integer
default:200
Required range: 1 <= x <= 1000

Response

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