Paginated finished matches: same fields as the product API (API key required).
GET
/api/v2/matches?page=6&limit=30Request
- URL
- https://api.ggscore.net/api/v2/matches?page=6&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/matches?page=6&limit=30'Example response body (200)
Illustrative JSON shape returned by the paid endpoint above (truncated).
{
"data": [
{
"id": "…",
"played_at": "2025-01-15T18:00:00",
"team_won": { "id": "…", "title": "Team A", "image_url": null },
"team_lose": { "id": "…", "title": "Team B", "image_url": null },
"event": { "id": "…", "title": "Event" },
"score_won": 2,
"score_lose": 1,
"games": []
}
],
"meta": { "page": 1, "limit": 30, "total": 120, "pages": 4 }
}