Authentication
Authenticate your API requests
Authentication
All API requests require authentication using your API key.
API Key
Include your API key in every request using the X-API-Key header:
Alternatively, you can pass it as a query parameter (not recommended for production):
API Secret
Your API secret is used to verify webhook signatures. Never expose it in client-side code.
Error Responses
401 Unauthorized
Security Best Practices
- Server-side only - Make API calls from your backend server
- Environment variables - Store credentials in environment variables
- Rotate keys - Regenerate keys if compromised
- IP Whitelist - Consider restricting API access by IP (coming soon)