// api-reference / authentication
Authentication
Secure your API requests using Bearer tokens.
bearer tokens
All API requests must include your API key as a Bearer token in the Authorization header.
curl https://api.vembric.io/v1/games \ -H "Authorization: Bearer YOUR_API_KEY"
key types
| Type | Description |
|---|---|
test_ | Sandbox key — no real data affected |
live_ | Production key — use with care |
security best practices
- Never expose keys in client-side code
- Rotate keys regularly
- Use environment variables to store keys
- Restrict key permissions to required scopes only
// keys can be managed from the Vembric dashboard under Settings → API Keys