General

    Authentication

    Learn how to authenticate with our API

    Authentication

    Our API uses API key authentication for secure access.

    Getting Your API Key

    1. Sign up for an account
    2. Navigate to your dashboard
    3. Generate a new API key
    4. 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'
      }
    });