General
Authentication
Learn how to authenticate with our API
Authentication
Our API uses API key authentication for secure access.
Getting Your API Key
- Sign up for an account
- Navigate to your dashboard
- Generate a new API key
- Copy and securely store your key
Warning: Never expose your API key in client-side code or public repositories.
Using Your API Key
Include your API key in the Authorization header:
Authorization: Bearer YOUR_API_KEY
Example Request
fetch('https://api.example.com/v1/generate', {
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
}
});