// 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
typedescription
test_Sandbox key — no real data affectedlive_Production key — use with caresecurity 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