API Reference #
Complete documentation for all VoxPria REST API endpoints.
📖 Full API Documentation #
Visit our comprehensive API reference:
Complete endpoint documentation with request/response examples:
🎮 Interactive API Playground #
Test API calls directly in your browser:
Try endpoints without writing code:
Quick Reference #
Base URL #
https://app.voxpria.com/api/v1
Authentication #
Authorization: Bearer YOUR_API_KEY Content-Type: application/json
Endpoint Categories #
Response Format #
All responses follow this structure:
{
"success": true,
"data": { ... },
"meta": {
"page": 1,
"limit": 50,
"total": 150
}
}
Error Format #
{
"success": false,
"error": {
"code": "INVALID_REQUEST",
"message": "Agent ID is required",
"details": { ... }
}
}

Leave A Comment