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

# Get Call

> Returns full detail for a single call record, including transcript and provider metadata.



## OpenAPI

````yaml GET /v1/calls/{id}
openapi: 3.1.0
info:
  title: Voxfra Management API
  description: >
    Tenant-facing REST API for integrating with Voxfra's voice intelligence
    infrastructure.

    Use this API to read call data, manage clients, and build partner
    dashboards.


    ## Authentication


    All endpoints except `GET /health` require an API key passed in the
    `X-API-Key` header.

    API keys are scoped to a single organization — all responses are
    automatically filtered to your org.


    Keys are issued by your Voxfra account manager or via the Voxfra admin
    console.
  version: 1.0.0
  contact:
    name: Voxfra Support
    email: support@voxfra.com
  license:
    name: Proprietary
    url: https://voxfra.com/terms
servers:
  - url: https://mgmt-api.voxfra.com
    description: Production
security:
  - ApiKeyAuth: []
tags:
  - name: Health
    description: System status
  - name: Auth
    description: Verify and inspect the current API key
  - name: Clients
    description: >-
      Read and provision clients (dealerships, clinics, etc.) within your
      organization
  - name: Calls
    description: Access call records ingested through voxfra
  - name: Customers
    description: >-
      Access tenant-scoped customer records deduplicated within organization and
      client boundaries
paths:
  /v1/calls/{id}:
    get:
      tags:
        - Calls
      summary: Get a call
      description: >-
        Returns full detail for a single call record, including transcript and
        provider metadata.
      operationId: getCall
      parameters:
        - name: id
          in: path
          required: true
          description: Call UUID
          schema:
            type: string
            format: uuid
          example: a1b2c3d4-e5f6-7890-abcd-ef1234567890
      responses:
        '200':
          description: Call record
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CallDetailResponse'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          description: Call not found or does not belong to this organization
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
              example:
                error: Call not found
        '500':
          $ref: '#/components/responses/InternalError'
components:
  schemas:
    CallDetailResponse:
      type: object
      properties:
        data:
          $ref: '#/components/schemas/CallDetail'
    ErrorResponse:
      type: object
      properties:
        error:
          type: string
        message:
          type: string
    CallDetail:
      allOf:
        - $ref: '#/components/schemas/Call'
        - type: object
          properties:
            assistant_id:
              type:
                - string
                - 'null'
            phone_call_provider:
              type:
                - string
                - 'null'
            call_provider_call_sid:
              type:
                - string
                - 'null'
    Call:
      type: object
      properties:
        id:
          type: string
          format: uuid
        organization_id:
          type: string
          format: uuid
        client_id:
          type:
            - string
            - 'null'
          format: uuid
        created_at:
          type: string
          format: date-time
        call_start_time:
          type:
            - string
            - 'null'
          format: date-time
        call_end_time:
          type:
            - string
            - 'null'
          format: date-time
        call_duration_seconds:
          type:
            - integer
            - 'null'
        caller_phone_number:
          type:
            - string
            - 'null'
        caller_full_name:
          type:
            - string
            - 'null'
        call_summary:
          type:
            - string
            - 'null'
        transcript:
          type:
            - string
            - 'null'
        transfer_flag:
          type:
            - boolean
            - 'null'
        hangup_reason:
          type:
            - string
            - 'null'
        recording_url:
          type:
            - string
            - 'null'
          format: uri
  responses:
    Unauthorized:
      description: Missing or invalid API key
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          example:
            error: Unauthorized
    InternalError:
      description: Internal server error
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          example:
            error: Internal Server Error
            message: Unexpected error
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key
      description: |
        Your Voxfra management API key. Passed as a request header.

        Format: `vox_mgmt_<random>`

````