Skip to main content
Preview. API access and key management are being finalised. This page describes the intended flow.

API keys

You’ll generate an API key from Dashboard → Settings → API. Treat it like a password.
Never commit your API key to source control or expose it in client-side code. Keep it server-side and rotate it if it’s ever exposed.

Making an authenticated request

Send your key as a Bearer token in the Authorization header.
curl https://api.gamer2z.com/v1/me \
  -H "Authorization: Bearer YOUR_API_KEY"
A successful request returns your account profile. From there, explore the endpoints.