Authorization
header with your API key.
Getting Your API Key
- Sign up for a Dubformer account
- Navigate to the API section in your dashboard
- Click “Create API key” to generate your token
- Copy your API key and store it securely
Keep your API key secure and never expose it in client-side code. Treat it like a password.
Making Authenticated Requests
Include your API key in theAuthorization
header of every request:
Required Headers
Every API request must include:Authorization: Bearer YOUR_API_KEY
- Your authentication tokenContent-Type: application/json
- For POST requests with JSON body
Optional Headers
Idempotency-Key
- For POST requests to ensure request uniqueness and prevent duplicate processing