Overview
Base URL
https://api.insightagent.ioAuthentication
Quick Start
# List your interviews
curl -X GET "https://api.insightagent.io/api/interviews" \
-H "Authorization: Bearer <your-token>"
# Create an interview
curl -X POST "https://api.insightagent.io/api/interviews" \
-H "Authorization: Bearer <your-token>" \
-H "Content-Type: application/json" \
-d '{
"interviewType": "FULL_INTERVIEW",
"title": "Market Research Interview",
"callSubject": "Enterprise software market trends",
"expertData": {
"name": "John Doe",
"title": "VP Engineering",
"employmentHistory": [
{"title": "VP Engineering", "company": "Acme Corp", "period": "2020-Present"}
]
},
"questions": ["What are the key challenges in your role?"]
}'Available Endpoints
Resource
Description
Response Format
Error Handling
Code
Description
Interactive Documentation
Last updated