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

# Get Call



## OpenAPI

````yaml /openapi/openapi.yaml get /v1/calls/{call_id}
openapi: 3.1.0
info:
  title: OneInbox API
  version: 1.0.0
servers:
  - url: https://api.oneinbox.ai
    description: Production server
security: []
tags:
  - name: health
  - name: integrations
  - name: llm-models
  - name: tools
  - name: knowledge-bases
  - name: voices
  - name: webhooks
  - name: agents
  - name: phone-numbers
  - name: calls
  - name: workspace
  - name: usage
  - name: audit-events
paths:
  /v1/calls/{call_id}:
    get:
      tags:
        - calls
      summary: Get Call
      operationId: get_call_v1_calls__call_id__get
      parameters:
        - name: call_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Call Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CallResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - API Key: []
components:
  schemas:
    CallResponse:
      properties:
        id:
          type: string
          title: Id
        agent_id:
          type: string
          title: Agent Id
        type:
          type: string
          title: Type
        status:
          type: string
          title: Status
        from_number:
          anyOf:
            - type: string
            - type: 'null'
          title: From Number
        to_number:
          anyOf:
            - type: string
            - type: 'null'
          title: To Number
        room_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Room Name
        direction:
          type: string
          title: Direction
        twilio_call_sid:
          anyOf:
            - type: string
            - type: 'null'
          title: Twilio Call Sid
        scheduled_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Scheduled At
        variables:
          additionalProperties: true
          type: object
          title: Variables
        started_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Started At
        ended_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Ended At
        duration_seconds:
          anyOf:
            - type: number
            - type: 'null'
          title: Duration Seconds
        end_reason:
          anyOf:
            - type: string
            - type: 'null'
          title: End Reason
        outcome:
          anyOf:
            - type: string
            - type: 'null'
          title: Outcome
        transcript:
          anyOf:
            - type: string
            - type: 'null'
          title: Transcript
        messages:
          items: {}
          type: array
          title: Messages
        recording_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Recording Url
        ai_summary:
          anyOf:
            - type: string
            - type: 'null'
          title: Ai Summary
        analysis:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Analysis
        latency:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Latency
          description: >-
            Per-call latency/observability (JSONB), null until the call
            completes a turn. Per-component aggregates
            `stt`/`llm_ttft`/`tts_ttfb`/`eou_delay` = {avg_ms, p50_ms, min_ms,
            max_ms, samples, provider} (provider stamped per segment so the log
            stays accurate if the agent is reconfigured). `events` = turn-tagged
            stream [{turn, type, ms}] where type is one of
            stt|llm_ttft|tts_ttfb|eou_delay|kb|tool:<name> — chains the whole
            response cycle per turn. `connect` = {setup_ms,
            dispatch_to_answer_ms, answer_to_active_ms, active_to_greeting_ms}.
        cost_cents:
          anyOf:
            - type: integer
            - type: 'null'
          title: Cost Cents
        credits_used:
          anyOf:
            - type: number
            - type: 'null'
          title: Credits Used
        kb_snapshot:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Kb Snapshot
        metadata:
          additionalProperties: true
          type: object
          title: Metadata
          description: >-
            Caller-supplied metadata plus the platform key
            `concurrency_at_dispatch` (count of the org's calls in flight at
            dispatch, for load-test correlation).
        created_at:
          type: string
          format: date-time
          title: Created At
        updated_at:
          type: string
          format: date-time
          title: Updated At
      type: object
      required:
        - id
        - agent_id
        - type
        - status
        - from_number
        - to_number
        - room_name
        - direction
        - scheduled_at
        - variables
        - started_at
        - ended_at
        - duration_seconds
        - end_reason
        - transcript
        - messages
        - recording_url
        - analysis
        - latency
        - cost_cents
        - metadata
        - created_at
        - updated_at
      title: CallResponse
    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
  securitySchemes:
    API Key:
      type: http
      description: >-
        Your **API key** sent as a Bearer credential — `Authorization: Bearer
        <api_key>`, where `<api_key>` starts with `oi_sk_` (create one via `POST
        /v1/api-keys`). Although the field is labelled 'token', paste your API
        key here. A dashboard JWT is also accepted on this header for the same
        endpoints.
      scheme: bearer

````