> ## Documentation Index
> Fetch the complete documentation index at: https://openphone-dev.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Get the summary for a call

> Get a call's summary. A call in the workspace always returns a summary object, even when none has been generated — read `status` to tell whether one is pending, will never exist, or failed.



## OpenAPI

````yaml https://openphone-public-api-dev.s3.us-west-2.amazonaws.com/public/openphone-public-api-2026-03-30-dev.json get /calls/{callId}/summary
openapi: 3.1.0
info:
  title: Quo Public API
  version: 1.0.0
  description: API for connecting with Quo.
  contact:
    name: Quo Support
    email: support@quo.com
    url: https://support.quo.com/
  termsOfService: https://www.quo.com/terms
servers:
  - description: Development server
    url: https://dev-public-api.openphone.dev
security:
  - apiKey: []
tags:
  - description: Operations related to calls
    name: Calls
  - description: >-
      Operations related to call summaries, including AI-generated summaries and
      Sona voice assistant summaries
    name: Call Summaries
  - description: >-
      Operations related to call transcripts, including AI-generated transcripts
      and Sona voice assistant transcripts
    name: Call Transcripts
  - description: Operations related to contacts
    name: Contacts
  - description: Operations related to contact shares
    name: Contact Shares
  - description: Operations related to contact notes
    name: Contact Notes
  - description: Operations related to contact properties
    name: Contact Properties
  - description: Operations related to conversations
    name: Conversations
  - description: Operations related to workspace invitations
    name: Invites
  - description: Operations related to text messages
    name: Messages
  - description: Operations related to the organization
    name: Organization
  - description: Operations related to phone numbers
    name: Phone Numbers
  - description: Operations related to users
    name: Users
  - description: Operations related to webhooks
    name: Webhooks
  - description: >-
      Operations related to webhook events, including delivery history and test
      events
    name: Webhook Events
paths:
  /calls/{callId}/summary:
    get:
      tags:
        - Calls
      summary: Get the summary for a call
      description: >-
        Get a call's summary. A call in the workspace always returns a summary
        object, even when none has been generated — read `status` to tell
        whether one is pending, will never exist, or failed.
      operationId: getCallSummary
      parameters:
        - in: path
          name: callId
          required: true
          schema:
            description: >-
              The unique identifier of the call whose summary is being
              retrieved.
            examples:
              - AC3700e624eca547eb9f749a06f2eb1
            pattern: ^AC(.*)$
            type: string
          example: AC3700e624eca547eb9f749a06f2eb1
        - in: header
          name: Quo-Api-Version
          required: true
          schema:
            type: string
            enum:
              - '2026-03-30'
            description: 'API version header. Supported values: 2026-03-30'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                required:
                  - data
                properties:
                  data:
                    additionalProperties: false
                    type: object
                    required:
                      - callId
                      - status
                      - type
                      - summary
                      - nextSteps
                      - jobs
                      - title
                    properties:
                      callId:
                        description: >-
                          The unique identifier of the call this summary belongs
                          to.
                        examples:
                          - AC3700e624eca547eb9f749a06f2eb1
                        pattern: ^AC(.*)$
                        type: string
                        example: AC3700e624eca547eb9f749a06f2eb1
                      status:
                        type: string
                        enum:
                          - absent
                          - in-progress
                          - completed
                          - failed
                        description: >-
                          Whether a summary exists for this call. `absent` means
                          one will never be generated, `in-progress` that it is
                          still being written, and `failed` that generation was
                          attempted and did not succeed. Content is only present
                          when this is `completed`.
                        examples:
                          - completed
                        example: completed
                      type:
                        anyOf:
                          - type: string
                            enum:
                              - human
                              - agent
                            description: >-
                              Which kind of call produced the summary. `agent`
                              calls were handled by AI agent and carry `jobs`
                              and a `title`; `human` calls carry `nextSteps`.
                              Null until a summary exists.
                            examples:
                              - human
                            example: human
                          - type: 'null'
                      summary:
                        anyOf:
                          - description: >-
                              The key points discussed during the call. Null
                              when no summary has been generated.
                            type: array
                            items:
                              examples:
                                - You talked about the weather.
                              type: string
                              example: You talked about the weather.
                          - type: 'null'
                      nextSteps:
                        anyOf:
                          - description: >-
                              Suggested follow-up items derived from the call.
                              Only produced for `human` summaries; null
                              otherwise.
                            type: array
                            items:
                              examples:
                                - Bring an umbrella.
                              type: string
                              example: Bring an umbrella.
                          - type: 'null'
                      jobs:
                        anyOf:
                          - description: >-
                              Structured job results collected by AI Agent — Q&A
                              pairs, task completions and similar. Only produced
                              for `agent` summaries; null otherwise.
                            type: array
                            items:
                              type: object
                              required:
                                - icon
                                - name
                                - result
                              properties:
                                icon:
                                  type: string
                                name:
                                  type: string
                                result:
                                  type: object
                                  required:
                                    - data
                                  properties:
                                    data:
                                      type: array
                                      items:
                                        type: object
                                        required:
                                          - name
                                          - value
                                        properties:
                                          name:
                                            type: string
                                          value:
                                            anyOf:
                                              - type: string
                                              - type: number
                                              - type: boolean
                          - type: 'null'
                      title:
                        anyOf:
                          - description: >-
                              A short title for the call. Only produced for
                              `agent` summaries; null otherwise.
                            examples:
                              - Pricing enquiry
                            type: string
                            example: Pricing enquiry
                          - type: 'null'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                type: object
                required:
                  - message
                  - docs
                  - title
                properties:
                  message:
                    type: string
                  docs:
                    const: https://quo.com/docs
                    type: string
                  title:
                    const: Bad Request
                    type: string
                  trace:
                    type: string
                  errors:
                    type: array
                    items:
                      type: object
                      required:
                        - path
                        - message
                        - schema
                      properties:
                        path:
                          type: string
                        message:
                          type: string
                        value: {}
                        schema:
                          type: object
                          required:
                            - type
                          properties:
                            type:
                              type: string
              example:
                message: The input was invalid
                docs: https://quo.com/docs
                title: Bad Request
                errors:
                  - path: /callId
                    message: Expected string to match '^AC(.*)$'
                    value: abc123
                    schema:
                      type: TemplateLiteral
                      pattern: ^AC(.*)$
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                type: object
                required:
                  - message
                  - docs
                  - title
                properties:
                  message:
                    type: string
                  docs:
                    const: https://quo.com/docs
                    type: string
                  title:
                    const: Unauthorized
                    type: string
                  trace:
                    type: string
                  errors:
                    type: array
                    items:
                      type: object
                      required:
                        - path
                        - message
                        - schema
                      properties:
                        path:
                          type: string
                        message:
                          type: string
                        value: {}
                        schema:
                          type: object
                          required:
                            - type
                          properties:
                            type:
                              type: string
              example:
                message: Unauthorized
                docs: https://quo.com/docs
                title: Unauthorized
                trace: '6897907457496870895'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                type: object
                required:
                  - message
                  - docs
                  - title
                properties:
                  message:
                    type: string
                  docs:
                    const: https://quo.com/docs
                    type: string
                  title:
                    const: Forbidden
                    type: string
                  trace:
                    type: string
                  errors:
                    type: array
                    items:
                      type: object
                      required:
                        - path
                        - message
                        - schema
                      properties:
                        path:
                          type: string
                        message:
                          type: string
                        value: {}
                        schema:
                          type: object
                          required:
                            - type
                          properties:
                            type:
                              type: string
              example:
                message: User is forbidden to perform this action
                docs: https://quo.com/docs
                title: Forbidden
                trace: '6897907457496870895'
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                type: object
                required:
                  - message
                  - docs
                  - title
                properties:
                  message:
                    type: string
                  docs:
                    const: https://quo.com/docs
                    type: string
                  title:
                    const: Not Found
                    type: string
                  trace:
                    type: string
                  errors:
                    type: array
                    items:
                      type: object
                      required:
                        - path
                        - message
                        - schema
                      properties:
                        path:
                          type: string
                        message:
                          type: string
                        value: {}
                        schema:
                          type: object
                          required:
                            - type
                          properties:
                            type:
                              type: string
              example:
                message: Call not found
                docs: https://quo.com/docs
                title: Not Found
                trace: '6897907457496870895'
        '500':
          description: Unknown Error
          content:
            application/json:
              schema:
                type: object
                required:
                  - message
                  - docs
                  - title
                properties:
                  message:
                    type: string
                  docs:
                    const: https://quo.com/docs
                    type: string
                  title:
                    const: Unknown
                    type: string
                  trace:
                    type: string
                  errors:
                    type: array
                    items:
                      type: object
                      required:
                        - path
                        - message
                        - schema
                      properties:
                        path:
                          type: string
                        message:
                          type: string
                        value: {}
                        schema:
                          type: object
                          required:
                            - type
                          properties:
                            type:
                              type: string
              example:
                message: We have encountered an unknown error
                docs: https://quo.com/docs
                title: Unknown
                trace: '6897907457496870895'
      security:
        - apiKey: []
components:
  securitySchemes:
    apiKey:
      in: header
      name: Authorization
      type: apiKey

````