Skip to content

Teams

Teams appearing in GGScore CS2 match data. Alphabetical index with paginated profile links.

Page 6 of 86

Get similar data via API

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

Loading…

Paginated team list (API key required).

GET/api/v2/teams?page=6&limit=50

Request

URL
https://api.ggscore.net/api/v2/teams?page=6&limit=50

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/teams?page=6&limit=50'

Example response body (200)

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

{
  "data": [
    { "id": "…", "title": "Team A", "image_url": null }
  ],
  "meta": { "page": 1, "limit": 50, "total": 500, "pages": 10 }
}