Getting started
Quick start
Create a key and make your first authenticated request in under a minute.
- Create an account — Register (or sign in).
- Create an API key — open API Keys, name the key, copy the full secret once. You will only see it at creation time.
- Call the API — send the key as a Bearer token:
curl -sS \ -H "Authorization: Bearer sk_live_YOUR_KEY" \ "https://gridledger.pro/v1/fixtures?game=cs2&limit=5"
A successful response looks like { "data": [ … ] }. Invalid keys return 401; over quota returns 429.
What to call next
GET /fixtures— upcoming / live matchesGET /results— finished matchesGET /matches//matches/:id— list or single matchGET /teams,/players,/leagues,/tournaments— catalogGET /search?q=spirit— search teams, players, leagues
Full inventory (11 endpoints): API reference. Backend setup: Integrate.
Prefer a UI? Use the Swagger playground — click Authorize, paste sk_live_…, then Try it out.