View Categories

API Reference

< 1 min read

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:

📖 View API Reference

🎮 Interactive API Playground #

Test API calls directly in your browser:

Try endpoints without writing code:

🎮 Launch Playground

Quick Reference #

Base URL #

https://app.voxpria.com/api/v1

Authentication #

Authorization: Bearer YOUR_API_KEY
Content-Type: application/json

Endpoint Categories #

📞 Calls #

Trigger and manage voice calls

View Endpoints →

📢 Campaigns #

Create and manage campaigns

View Endpoints →

🤖 Agents #

Work with AI voice agents

View Endpoints →

👥 Contacts #

Manage contact database

View Endpoints →

🔔 Webhooks #

Real-time notifications

View Endpoints →

💰 Credits #

Usage and billing

View Endpoints →

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

Go to Top