Documentation Index
Fetch the complete documentation index at: https://docs.voicy.co/llms.txt
Use this file to discover all available pages before exploring further.
API Overview
The Voicy API provides RESTful endpoints for managing calls.Base URL
{base_url}/{function-name}.
Endpoints
Calls
| Method | Endpoint | Description |
|---|---|---|
| POST | /call-dial | Initiate an outbound call |
| GET | /call-get/{call_id} | Get call details with transcript, recording, and variables |
| POST | /call-list | List calls with filters, sorting, and pagination |
| DELETE | /call-delete/{call_id} | Delete a single call |
| POST | /call-delete | Delete multiple calls (batch) |
| POST | /call-extract/{call_id} | Retry summary and variable extraction |
Authentication
Include your API key in the Authorization header:Request Format
- Use
Content-Type: application/jsonfor request bodies - Include
Authorization: Bearer <api_key>header - Send JSON-encoded request bodies
Response Format
Successful responses return the requested data directly as JSON. Error responses:HTTP Status Codes
| Code | Meaning |
|---|---|
| 200 | Success |
| 201 | Created |
| 400 | Bad Request |
| 401 | Unauthorized |
| 403 | Forbidden |
| 404 | Not Found |
| 422 | Unprocessable Entity |
| 500 | Internal Server Error |
Pagination
/call-list supports cursor-based pagination:
total_count for displaying total results.