> ## Documentation Index
> Fetch the complete documentation index at: https://docs.callintel.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Voice Webhook

> Webhook endpoint for incoming calls from providers (Twilio, Plivo, etc.).



## OpenAPI

````yaml POST /voice
openapi: 3.0.0
info:
  title: CallIntel API
  version: 1.0.0
  description: API for managing AI-powered voice calls, batch processing, and scheduling.
servers:
  - url: https://py.callai.rejoicehub.com
    description: Production Server
security:
  - bearerAuth: []
  - apiKeyAuth: []
paths:
  /voice:
    post:
      summary: Voice Webhook
      description: >-
        Webhook endpoint for incoming calls from providers (Twilio, Plivo,
        etc.).
      responses:
        '200':
          description: TwiML or XML response.
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````