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

# Get Call

> Get full details for a single call, including transcript, recording URL, and analysis.



## OpenAPI

````yaml /api-reference/openapi.json get /calls/{call_id}
openapi: 3.1.0
info:
  title: Puppeteer Core API
  description: >-
    Core API for the Puppeteer AI platform. Manages domain models,
    conversations, voice calls, simulations, and integrations.


    [Documentation](https://docs.puppeteerai.com)
  version: 1.0.0
servers:
  - url: https://api.puppeteerai.com
    description: Production
security: []
tags:
  - name: Auth
    description: JWT token generation and organization creation.
  - name: Messages
    description: >-
      Send and receive messages, retrieve conversation history, search, and
      create messages in threads.
  - name: Threads
    description: Create and manage threads, aliases, scheduled events, and bulk operations.
  - name: Voice
    description: Voice call handling, scheduling, batch calls, and WebSocket LLM.
paths:
  /calls/{call_id}:
    get:
      tags:
        - Calls
      summary: Get Call
      description: >-
        Get full details for a single call, including transcript, recording URL,
        and analysis.
      operationId: get_call_calls__call_id__get
      parameters:
        - name: call_id
          in: path
          required: true
          schema:
            type: string
            title: Call Id
        - name: Authorization
          in: header
          required: true
          schema:
            type: string
            title: Authorization
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CallDetail'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    CallDetail:
      properties:
        id:
          type: string
          title: Id
          description: Unique identifier of the call.
        thread_id:
          type: string
          title: Thread Id
          description: Identifier of the thread this call belongs to.
        conversation_id:
          anyOf:
            - type: integer
            - type: 'null'
          title: Conversation Id
          description: >-
            Identifier of the conversation, or null for scheduled calls that
            never started.
        call_type:
          type: string
          title: Call Type
          description: Type of the call, e.g. "phone_call" or "web_call".
        status:
          type: string
          title: Status
          description: Current status, e.g. "scheduled", "ongoing", "ended", "error".
        direction:
          anyOf:
            - type: string
            - type: 'null'
          title: Direction
          description: Call direction, "inbound" or "outbound".
        from_number:
          anyOf:
            - type: string
            - type: 'null'
          title: From Number
          description: Originating phone number (phone calls only).
        to_number:
          anyOf:
            - type: string
            - type: 'null'
          title: To Number
          description: Destination phone number (phone calls only).
        scheduled_for:
          anyOf:
            - type: string
            - type: 'null'
          title: Scheduled For
          description: ISO 8601 timestamp the call is scheduled for, or null.
        start_timestamp:
          anyOf:
            - type: integer
            - type: 'null'
          title: Start Timestamp
          description: >-
            Unix timestamp (seconds) when the call started, or null if it has
            not started.
        end_timestamp:
          anyOf:
            - type: integer
            - type: 'null'
          title: End Timestamp
          description: >-
            Unix timestamp (seconds) when the call ended, or null if it has not
            ended.
        duration_ms:
          anyOf:
            - type: integer
            - type: 'null'
          title: Duration Ms
          description: Call duration in milliseconds, or null.
        disconnection_reason:
          anyOf:
            - type: string
            - type: 'null'
          title: Disconnection Reason
          description: Reason the call ended, if known.
        created_at:
          type: string
          title: Created At
          description: ISO 8601 timestamp when the call record was created.
        transcript:
          anyOf:
            - type: string
            - type: 'null'
          title: Transcript
          description: Plain-text transcript of the call, if available.
        transcript_object:
          anyOf:
            - {}
            - type: 'null'
          title: Transcript Object
          description: Structured per-utterance transcript, if available.
        recording_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Recording Url
          description: >-
            URL to the call recording. Self-hosted recordings return a
            short-lived signed URL.
        call_analysis:
          anyOf:
            - {}
            - type: 'null'
          title: Call Analysis
          description: >-
            Post-call analysis (summary, sentiment, custom fields), if
            available.
      type: object
      required:
        - id
        - thread_id
        - call_type
        - status
        - created_at
      title: CallDetail
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````