Authentication
Authentication Methods
1. Bearer Token (JWT)
curl -X GET "https://api.insightagent.io/api/interviews" \
-H "Authorization: Bearer <jwt-token>"2. API Keys
curl -X GET "https://api.insightagent.io/api/interviews" \
-H "x-api-key: <your-api-key>"sk_{environment}_{32-character-hex-string}API Key Best Practices
Do
Don't
Error Responses
Missing Authentication (400)
Invalid Credentials (401)
Last updated