Getting Your API Key
- Log in to your Feather Dashboard
- Navigate to Settings → API Keys
- Click Generate New Key
- Copy your API key and store it securely
API keys are only shown once during creation. Make sure to copy and store your key in a secure location immediately.
API Key Header
Include your API key in theX-API-Key
header:
Security Best Practices
Environment Variables
Always store your API keys in environment variables, never hardcode them:Key Rotation
- Rotate your API keys regularly (recommended: every 90 days)
- Immediately rotate keys if they may have been compromised
- Use separate keys for development and production environments
Access Control
- Only give API keys to team members who need them
- Use separate keys for different applications or services
- Monitor API key usage in the dashboard
Rate Limits
Feather API has the following rate limits:- Standard Plan: 10 RPS
- Enterprise: Custom limits available
429 Too Many Requests
response.
Error Codes
Status Code | Description |
---|---|
401 | Invalid or missing API key |
403 | API key doesn’t have required permissions |
429 | Rate limit exceeded |