Paginated events (API key required).
GET
/api/v2/events?page=4&limit=50Request
- URL
- https://api.ggscore.net/api/v2/events?page=4&limit=50
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/events?page=4&limit=50'Example response body (200)
Illustrative JSON shape returned by the paid endpoint above (truncated).
{
"data": [
{ "id": "…", "title": "IEM Katowice", "image_url": null }
],
"meta": { "page": 1, "limit": 50, "total": 200, "pages": 4 }
}