Authentication
All API requests require an API key. Include your key in the X-API-Key header with every request.
Getting your API key
- Create an account (free, no credit card required)
- Verify your email
- Go to your Dashboard and navigate to API Keys
- Click Create New Key and give it a name
- Copy the key immediately — it won’t be shown again
Using your API key
Include the key in the X-API-Key header:
API key limits by plan
Security best practices
Never expose your API key in client-side code, public repositories, or browser requests. Always call the API from your backend server.
- Store keys in environment variables, not in code
- Use different keys for development and production
- Rotate keys periodically
- Revoke unused keys from your dashboard