RESTful API for integrating VoxSprout with your existing tools and workflows. Available on Professional and Enterprise plans.
All API requests require authentication using API keys. Include your key in the Authorization header:
Authorization: Bearer YOUR_API_KEY
Retrieve all candidates
curl -H "Authorization: Bearer YOUR_API_KEY" \
https://api.voxsprout.tech/v1/candidates
Submit interview feedback
curl -X POST -H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"candidate_id": "123", "score": 4, "notes": "Strong technical skills"}' \
https://api.voxsprout.tech/v1/feedback
Retrieve funnel analytics
curl -H "Authorization: Bearer YOUR_API_KEY" \
https://api.voxsprout.tech/v1/analytics?start_date=2026-01-01