API Key Authentication
Continum uses API keys to authenticate requests. Include your API key in thex-continum-key header:
Getting Your API Key
- Sign in to the dashboard
- Navigate to Settings → API Keys
- Click “Generate New Key”
- Copy and save the key securely
API Key Format
Continum API keys follow this format:co_a1b2c3d4e5f6g7h8i9j0k1l2m3n4o5p6q7r8s9t0u1v2w3x4
Security Best Practices
Store Keys Securely
Never hardcode API keys in your source code:Use Environment Variables
Store keys in environment variables:Rotate Keys Regularly
Generate new keys periodically and revoke old ones:- Generate a new key in the dashboard
- Update your application with the new key
- Test that everything works
- Revoke the old key
Limit Key Scope
Use different keys for different environments:- Development:
co_dev_... - Staging:
co_staging_... - Production:
co_prod_...
Key Management
Viewing Keys
View all your API keys in the dashboard:- Key prefix (first 8 characters)
- Creation date
- Last used date
- Status (active/revoked)
Revoking Keys
Revoke a key immediately if compromised:- Navigate to API Keys in the dashboard
- Find the key to revoke
- Click “Revoke”
- Confirm the action
Authentication Errors
401 Unauthorized
Missing or invalid API key:x-continum-key header with a valid API key.
403 Forbidden
Plan limit reached:Testing Authentication
Test your API key with a simple request:SDK Authentication
The SDK handles authentication automatically:Internal API Authentication
Some endpoints are for internal use only (Continum Platform communication):Next Steps
API Introduction
Learn about the REST API
SDK Installation
Install the SDK
Customer API
Manage customer accounts
Dashboard
View your API keys

