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

# Get Call

> Returns a single call based on the ID supplied



## OpenAPI

````yaml openapi-calls GET /calls/{call_id}
openapi: 3.0.1
info:
  title: Puretalk AI
  description: Api Documentation for Puretalk AI
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://api.puretalk.ai/api
security:
  - ApiKeyAuth: []
paths:
  /calls/{call_id}:
    get:
      description: Returns a single call based on the ID supplied
      parameters:
        - name: call_id
          in: path
          description: ID of call to return
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Call response
          content:
            application/json:
              schema:
                type: object
                properties:
                  msg:
                    type: string
                    example: Success
                    description: A success message
                  err:
                    type: boolean
                    example: false
                    description: Indicates if there was an error
                  results:
                    $ref: '#/components/schemas/Call'
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Call:
      type: object
      properties:
        call_analysis:
          type: object
          description: The analysis of the call
          properties:
            summary:
              type: string
              nullable: true
              description: A summary of the call
              example: This is a summary of the call
            call_completion_summary:
              type: string
              nullable: true
              description: A summary of the call completion
              example: This is a summary of the call completion
            call_completion:
              type: string
              nullable: true
              description: A summary of the call completion
              example: This is a summary of the call completion
            task_completion_summary:
              type: string
              nullable: true
              description: A summary of the task completion
              example: This is a summary of the task completion
            task_completion:
              type: string
              nullable: true
              description: A summary of the task completion
              example: This is a summary of the task completion
            post_analysis_data:
              type: array
              nullable: true
              items:
                type: object
                properties:
                  name:
                    type: string
                    description: The name of the post analysis data
                    example: This is the name of the post analysis data
                  value:
                    oneOf:
                      - type: string
                        description: The value of the post analysis data
                        example: This is the value of the post analysis data
                      - type: number
                        description: The value of the post analysis data
                        example: 123
                      - type: boolean
                        description: The value of the post analysis data
                        example: true
          nullable: true
        protocol:
          type: string
          description: The protocol of the call
          enum:
            - twilio
            - telnyx
            - web
          example: web
        call_id:
          type: string
          description: The ID of the call
          example: be8b84ed-16d8-459e-b71c-b0f54fce5ec1
        from_number:
          type: string
          nullable: true
          description: The originating phone number
          example: '+1234567890'
        to_number:
          type: string
          nullable: true
          description: The destination phone number
          example: '+1234567890'
        assistant_id:
          type: string
          description: The ID of the assistant
          example: 217b769d-befe-47a2-83bc-b014c2e19ea5
        assistant_name:
          type: string
          description: The name of the assistant
          example: Appointment Setter
        voice_id:
          type: string
          description: The ID of the voice
          example: Puretalktts-e0c5f2f95332
        voice_name:
          type: string
          description: The name of the voice
          example: Gabrielle
        start_time:
          type: string
          format: date-time
          description: The start time of the call
          example: '2025-05-19T10:15:22.230876-04:00'
        end_time:
          type: string
          format: date-time
          description: The end time of the call
          example: '2025-05-19T10:15:22.230876-04:00'
          nullable: true
        call_duration_seconds:
          type: integer
          nullable: true
          description: The duration of the call in seconds
          example: 123
        call_type:
          type: string
          description: The type of call
          enum:
            - incoming
            - outgoing
          example: outgoing
        transcript:
          type: string
          nullable: true
          description: The transcript of the call
          example: This is the transcript of the call
        transcript_object:
          type: array
          description: The transcript of the call
          items:
            type: object
            properties:
              role:
                type: string
                description: Whether the role is user or assistant
                example: user
              content:
                type: string
                description: The content of the transcript
                example: This is the content of the transcript
              function_name:
                type: string
                description: The name of the function called
                example: get_weather
                nullable: true
              interrupted:
                type: boolean
                description: Whether the turn was interrupted
                example: false
              function_args:
                type: string
                description: The arguments passed to the function
                example: '{"location": "New York"}'
                nullable: true
              tool_calls:
                type: array
                description: Array of tool calls made during the turn
                example: []
              turn_latency:
                type: object
                description: Latency metrics for the turn
                nullable: true
                properties:
                  latency:
                    type: number
                    description: Total latency for the turn
                    example: 1.5
                  eou_delay:
                    type: number
                    description: End of utterance delay
                    example: 0.2
                  llm_latency:
                    type: number
                    description: LLM processing latency
                    example: 0.8
                  tts_latency:
                    type: number
                    description: Text-to-speech latency
                    example: 0.5
          nullable: true
        status:
          type: string
          description: The status of the call
          enum:
            - completed
            - in progress
            - failed
            - busy
            - queued
            - ringing
            - in-progress
            - no-answer
            - canceled
          example: completed
        provider_call_id:
          type: string
          description: The ID of the call from the provider
          example: CA96878fe2501423e1f018a7ab6db5498b
          nullable: true
        metadata:
          type: object
          nullable: true
          description: The metadata of the call
          example: This is the metadata of the call
          properties:
            model:
              type: string
              description: The model of the call
              example: gpt-3.5-turbo
        variables:
          type: array
          items:
            type: string
        answered_by:
          type: string
          description: The name of the person who answered the call
          enum:
            - human
            - machine
          example: human
        call_recording_enabled:
          type: boolean
          description: Whether the call recording is enabled
          example: true
        call_recording_url:
          type: string
          format: uri
          nullable: true
          description: The URL of the call recording
          example: https://api.puretalk.ai/api/calls/1234567890/recording
        campaign_id:
          type: string
          nullable: true
        sentiment:
          type: string
          description: The sentiment of the call
          enum:
            - positive
            - negative
            - neutral
            - n/a
          example: positive
          nullable: true
        is_billed:
          type: boolean
          description: Whether the call is billed
          example: true
    Error:
      required:
        - err
        - msg
      type: object
      properties:
        err:
          type: boolean
          example: true
        msg:
          type: string
          example: An error occurred.
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-KEY
      description: >-
        Authorization header containing API key. You can find your API key in
        the dashboard under 'API Keys'.

````