Recent finished matches that included this map (API key required).
GET
/api/v2/maps/cache/recent_matches?limit=30Request
- URL
- https://api.ggscore.net/api/v2/maps/cache/recent_matches?limit=30
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/cache/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": []
}
]
}