Authentication
Learn how to authenticate with our API
Authentication
All API requests require authentication using an API key.
Getting Your API Key
1. Log in to your dashboard 2. Navigate to Settings > API Keys 3. Generate a new API key
Using Your API Key
Include your API key in the header:
curl -H "Authorization: Bearer YOUR_API_KEY" \
https://api.example.com/v1/data
---