Grid Ledger

Getting started

Quick start

Create a key and make your first authenticated request in under a minute.

  1. Create an account — Register (or sign in).
  2. Create an API key — open API Keys, name the key, copy the full secret once. You will only see it at creation time.
  3. 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 matches
  • GET /results — finished matches
  • GET /matches / /matches/:id — list or single match
  • GET /teams, /players, /leagues, /tournaments — catalog
  • GET /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.