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

# Get call result

> Retrieve post-call result fields including summary, transcript, recording URL, structured data, rating, and objectives.



## OpenAPI

````yaml /openapi.yaml get /api/v1/get-call-result/{call_id}
openapi: 3.1.0
info:
  title: Voxworks API
  version: 1.0.0
  description: >-
    Public REST API for creating contacts, scheduling calls, retrieving call
    results, managing lists and objects, and receiving automation webhooks.
servers:
  - url: https://api.voxworks.ai
    description: Production
security:
  - BearerAuth: []
tags:
  - name: Health
  - name: Contacts
  - name: Calls
  - name: Lists
  - name: Objects
  - name: Webhooks
paths:
  /api/v1/get-call-result/{call_id}:
    get:
      tags:
        - Calls
      summary: Get call result
      description: >-
        Retrieve post-call result fields including summary, transcript,
        recording URL, structured data, rating, and objectives.
      operationId: getCallResult
      parameters:
        - $ref: '#/components/parameters/CallId'
      responses:
        '200':
          description: Call result returned.
          content:
            application/json:
              schema:
                type: object
                required:
                  - success
                  - call
                properties:
                  success:
                    type: boolean
                    example: true
                  call:
                    $ref: '#/components/schemas/CallResult'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
        '429':
          $ref: '#/components/responses/RateLimited'
        '500':
          $ref: '#/components/responses/InternalServerError'
components:
  parameters:
    CallId:
      name: call_id
      in: path
      required: true
      schema:
        type: string
      description: Unique call ID.
  schemas:
    CallResult:
      allOf:
        - $ref: '#/components/schemas/CallStatus'
        - type: object
          properties:
            type:
              type:
                - string
                - 'null'
            script_id:
              type:
                - string
                - 'null'
            contact_id:
              type:
                - string
                - 'null'
            call_summary:
              type:
                - string
                - 'null'
            structured_data:
              type:
                - object
                - 'null'
              additionalProperties: true
            transcript:
              type:
                - string
                - 'null'
            transcript_json:
              type:
                - object
                - array
                - 'null'
            recording_url:
              type:
                - string
                - 'null'
            rating:
              type:
                - integer
                - 'null'
            objectives:
              type:
                - array
                - 'null'
              items:
                type: object
                additionalProperties: true
            post_call_actions:
              type:
                - array
                - 'null'
              items:
                type: object
                additionalProperties: true
    CallStatus:
      type: object
      properties:
        id:
          type: string
        status:
          type:
            - string
            - 'null'
        progress:
          type:
            - string
            - 'null'
        end_reason:
          type:
            - string
            - 'null'
        duration:
          type:
            - integer
            - 'null'
        scheduled_time:
          type:
            - string
            - 'null'
          format: date-time
        actual_time:
          type:
            - string
            - 'null'
          format: date-time
        end_time:
          type:
            - string
            - 'null'
          format: date-time
        modified_at:
          type:
            - string
            - 'null'
          format: date-time
    ErrorResponse:
      type: object
      required:
        - success
        - message
      properties:
        success:
          type: boolean
          example: false
        message:
          type: string
  responses:
    Unauthorized:
      description: Missing, malformed, or invalid authorization.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          examples:
            invalid:
              value:
                success: false
                message: Invalid API key
    NotFound:
      description: The requested resource was not found or does not belong to your team.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
    RateLimited:
      description: Rate limit exceeded.
      headers:
        Retry-After:
          schema:
            type: string
        X-RateLimit-Limit:
          schema:
            type: string
        X-RateLimit-Remaining:
          schema:
            type: string
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          example:
            success: false
            message: Rate limit exceeded
    InternalServerError:
      description: Internal server error.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          example:
            success: false
            message: Internal server error
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API key
      description: 'API key from Voxworks, sent as `Authorization: Bearer YOUR_API_KEY`.'

````