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

# Get the active voice provider for the organization

> Returns the currently active voice provider (Sinch or Twilio) and the calling user's default phone number for that provider. Read-only; used by the dialer and AI-readiness banners to know which SDK to load. Open to any authenticated user.



## OpenAPI

````yaml /api-reference/openapi.yaml get /api/calls/providers
openapi: 3.0.3
info:
  title: Tether Relay and Tether API
  version: 1.0.0
  description: >-
    Route-derived OpenAPI contract generated from tether-relay backend sources.
    Regenerate with scripts/sync-openapi-from-backend.mjs.
servers:
  - url: https://your-instance.example.com
    description: Production
  - url: http://localhost:2212
    description: Local API service
security: []
tags:
  - name: AI
  - name: Applications
  - name: Approval
  - name: Auth
  - name: Automations
  - name: Calls
  - name: Campaigns
  - name: Contact Analytics
  - name: Contact Metrics
  - name: Contact Notes
  - name: Contacts
  - name: Conversation Monitor
  - name: Conversations
  - name: Departments
  - name: Email
  - name: Escalation Dashboard
  - name: Event Logs
  - name: Google Sheets
  - name: Marketplace
  - name: Messages
  - name: Notification Sounds
  - name: Notifications
  - name: Org Snapshots
  - name: Organizations
  - name: Outreach
  - name: Outreach Metrics
  - name: Outreach Sources
  - name: Pipelines
  - name: Processes
  - name: Prompts
  - name: Reminders
  - name: Sms
  - name: Templates
  - name: Traces
  - name: Training
  - name: Upload
  - name: User Snapshots
  - name: Users
  - name: Vertical
  - name: Webchats
  - name: Webhook
paths:
  /api/calls/providers:
    get:
      tags:
        - Calls
      summary: Get the active voice provider for the organization
      description: >-
        Returns the currently active voice provider (Sinch or Twilio) and the
        calling user's default phone number for that provider. Read-only; used
        by the dialer and AI-readiness banners to know which SDK to load. Open
        to any authenticated user.
      operationId: get_calls_providers
      responses:
        '200':
          description: Active provider and the caller's phone number for that provider
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CallsActiveProviderResponse'
        '401':
          description: Missing or invalid auth token
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CallsErrorResponse'
        '500':
          description: Internal error loading provider
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CallsErrorResponse'
      security:
        - bearerAuth: []
components:
  schemas:
    CallsActiveProviderResponse:
      type: object
      properties:
        provider:
          type: string
          nullable: true
          enum:
            - twilio
            - sinch
            - null
          description: Active voice provider for this org, or null if none is configured.
        phoneNumber:
          type: string
          nullable: true
          description: Calling user's default phone number for the active provider.
      additionalProperties: true
      example:
        provider: sinch
        phoneNumber: '+14165550100'
    CallsErrorResponse:
      type: object
      description: >-
        Error envelope used across most calls endpoints. Some endpoints wrap a
        string error; validation endpoints (parseContractInput) return a
        structured `error` object with `code` and `details`.
      properties:
        success:
          type: boolean
          enum:
            - false
        error:
          oneOf:
            - type: string
            - type: object
              properties:
                code:
                  type: string
                message:
                  type: string
                details:
                  type: array
                  items:
                    type: object
                    additionalProperties: true
              additionalProperties: true
        code:
          type: string
          description: >-
            Stable error code on certain errors (e.g. `NUMBER_NOT_ON_TRUNK`,
            `AGENT_NOT_SYNCED`, `OUTBOUND_IN_FLIGHT`).
      additionalProperties: true
      example:
        success: false
        error: Call not found
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````