Authentication
How to authenticate API requests to AgenticFlow.
API Keys
Generating API Keys
Go to Settings → API Keys
Click "Create API Key"
Name your key
Copy the key (only shown once!)
Store securely
Using API Keys
Include in the Authorization header:
curl -H "Authorization: Bearer YOUR_API_KEY" \
https://api.agenticflow.com/v1/agentsSecurity Best Practices
Never commit API keys to version control
Rotate keys regularly
Use environment variables
Implement key expiration
Monitor key usage
Error Responses
401 Unauthorized- Invalid or missing API key403 Forbidden- Insufficient permissions429 Too Many Requests- Rate limit exceeded
Last updated
Was this helpful?