Maps that appear in at least one finished match (API key required).
GET
/api/v2/mapsRequest
- URL
- https://api.ggscore.net/api/v2/maps
Headers
| Header | Value |
|---|---|
| Accept | application/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'Example response body (200)
Illustrative JSON shape returned by the paid endpoint above (truncated).
{
"items": [
{ "slug": "dust2", "title": "Dust II", "last_played_at": "2025-01-15T12:00:00" }
]
}