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

# Fetch Transcript Summaries

> Retrieve a list of summaries with pagination

<ResponseExample>
  ```json Response (200 OK) theme={null}
  {
    "data": [
      {
        "summary_id": "4b0d7883-10fd-4212-9d59-d781bf5434d8",
        "transcript_id": "08dd94d7-ad88-430b-8402-a3cb8d82e80b",
        "call_id": "694bf432dd7f23000124626c",
        "summary": "Aritzia achieved over $1 billion in net revenue for Q3 fiscal 2026, surpassing guidance with a 43% increase year-over-year, driven by strong e-commerce and retail channel growth.\nThe company reported a 58% increase in e-commerce sales and a 35% increase in retail sales. U.S. net revenue surged by 54%, showcasing significant demand and expansion.\nStrategic initiatives included new boutique openings, a successful mobile app launch, and marketing investments, contributing to increased brand awareness and sales momentum.\nThe launch of the mobile app exceeded expectations, reaching 1.4 million downloads, and significantly boosting e-commerce engagement.\nManagement raised fiscal 2026 net revenue guidance to $3.615 to $3.64 billion, with plans for further expansion in the U.S. and digital initiatives in fiscal 2027.\nThe company maintained a healthy balance sheet with $620 million in cash and no debt, and continued share repurchases under the NCIB.\nAritzia plans to continue optimizing inventory and sourcing strategies, reducing dependency on China, and maintaining strong margin performance despite external pressures.",
        "symbol": "ATZ",
        "sentiment": 0.85,
        "language": "en-US",
        "created_at": "2026-01-09T13:00:29.963428Z",
        "updated_at": "2026-01-09T13:00:29.963428Z"
      },
      {
        "summary_id": "f8890d3f-1c61-40ed-9ed5-2eaed75aa6fa",
        "transcript_id": "52769188-2cea-442b-8140-aaa57b5733bf",
        "call_id": "694bf432dd7f23000124626c",
        "summary": "Aritzia reported record net revenue of $1.04 billion in Q3 fiscal 2026, a 43% increase driven by strong e-commerce and retail performance.\nThe company saw exceptional growth in the United States, with US net revenue increasing by 54%, highlighting strong demand and brand momentum.\nAritzia successfully launched a mobile app, which significantly boosted e-commerce sales and achieved over 1 million downloads shortly after launch.\nThe company opened 13 new and 4 repositioned boutiques, mainly in the US, as part of its real estate expansion strategy, which is yielding exceptional results.\nFuture guidance suggests continued strong performance with Q4 revenue expected to be between $1.1 to $1.125 billion, and fiscal 2026 revenue forecast raised to $3.615 to $3.64 billion.\nAritzia plans to open 12 to 14 new boutiques in fiscal 2027, with a focus on the US market, and will also invest in infrastructure, including a second US distribution center.\nManagement expressed confidence in achieving fiscal 2027 revenue targets ahead of schedule, supported by strategic marketing investments and digital growth initiatives.",
        "symbol": "ATZ",
        "sentiment": 0.85,
        "language": "en-US",
        "created_at": "2026-01-09T13:00:25.721386Z",
        "updated_at": "2026-01-09T13:00:25.721386Z"
      }
    ],
    "message": "Successfully fetched summaries",
    "pagination": {
      "hits": 16110,
      "page": 1,
      "page_count": 1611,
      "page_size": 2
    }
  }
  ```

  ```json Response (400 Bad Request) theme={null}
  {
    "ok": false,
    "errors": [
      {
        "code": "bad_request",
        "id": "invalid_parameter",
        "value": "Invalid search_keys_type parameter"
      }
    ]
  }
  ```

  ```json Response (401 Unauthorized) theme={null}
  {
    "ok": false,
    "errors": [
      {
        "code": "auth_failed",
        "id": "unauthorized",
        "value": "Invalid or missing authentication token"
      }
    ]
  }
  ```

  ```json Response (404 Not Found) theme={null}
  {
    "ok": false,
    "errors": [
      {
        "code": "no_data_found",
        "id": "not_found",
        "value": "No logos found for the specified search key"
      }
    ]
  }
  ```

  ```json Response (500 Internal Server Error) theme={null}
  {
    "ok": false,
    "errors": [
      {
        "code": "internal_server_error",
        "id": "server_error",
        "value": "An unexpected error occurred while processing your request"
      }
    ]
  }
  ```
</ResponseExample>


## OpenAPI

````yaml /openapi/delivery_api.spec.yml GET /api/v1/transcripts/summaries
openapi: 3.0.0
info:
  contact: {}
  description: This REST API provides endpoints to fetch conference calls and summaries.
  termsOfService: http://swagger.io/terms/
  title: Conference call transcripts
  version: 2.1.0
servers:
  - url: https://api.benzinga.com
    description: PROD
security: []
paths:
  /api/v1/transcripts/summaries:
    get:
      tags:
        - summaries
      summary: Fetch summaries
      description: Retrieve a list of summaries with pagination
      operationId: get-summaries
      parameters:
        - description: The page number for pagination (starts at 1)
          in: query
          name: page
          schema:
            type: integer
            default: 1
        - description: The number of items to return per page
          in: query
          name: page_size
          schema:
            type: integer
            default: 10
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                additionalProperties: true
                type: object
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                additionalProperties:
                  type: string
                type: object
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                additionalProperties:
                  type: string
                type: object
      security:
        - ApiKeyAuth: []
components:
  securitySchemes:
    ApiKeyAuth:
      in: query
      name: token
      type: apiKey

````