API Reference

VoxSprout API

RESTful API for integrating VoxSprout with your existing tools and workflows. Available on Professional and Enterprise plans.

Authentication

All API requests require authentication using API keys. Include your key in the Authorization header:

Authorization: Bearer YOUR_API_KEY

Endpoints

GET /api/v1/candidates

Retrieve all candidates

curl -H "Authorization: Bearer YOUR_API_KEY" \
  https://api.voxsprout.tech/v1/candidates

POST /api/v1/feedback

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

GET /api/v1/analytics

Retrieve funnel analytics

curl -H "Authorization: Bearer YOUR_API_KEY" \
  https://api.voxsprout.tech/v1/analytics?start_date=2026-01-01