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