Skip to content

Default

default

Finished Counter-Strike 2 matches on Default (default).

PlayedMatchScoreEvent
May 4, 2026, 5:25 PMsdy vs cairne20Ninjas in Pyjamas 1vs1 Showdown 2026

Get similar data via API

Programmatic access uses /api/v2 with X-API-Key. Full schemas: /docs and /docs/api-types.

Loading…

Recent finished matches that included this map (API key required).

GET/api/v2/maps/default/recent_matches?limit=30

Request

URL
https://api.ggscore.net/api/v2/maps/default/recent_matches?limit=30

Headers

HeaderValue
Acceptapplication/json
X-API-Keyrequired<your-key> or $GGSCORE_API_KEY

cURL

curl -sS \
  -H "X-API-Key: $GGSCORE_API_KEY" \
  'https://api.ggscore.net/api/v2/maps/default/recent_matches?limit=30'

Example response body (200)

Illustrative JSON shape returned by the paid endpoint above (truncated).

{
  "items": [
    {
      "id": "…",
      "played_at": "2025-01-15T18:00:00",
      "team_won": { "id": "…", "title": "A", "image_url": null },
      "team_lose": { "id": "…", "title": "B", "image_url": null },
      "event": {},
      "score_won": 16,
      "score_lose": 14,
      "games": []
    }
  ]
}