> ## 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.

# IDでトランスクリプト要約を取得

> 特定のコールIDの概要情報を取得します

<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は2026年度第3四半期に過去最高の純売上高10億4000万ドルを報告し、強力なeコマースおよび小売パフォーマンスにより43%増となりました。\n同社は米国で顕著な成長を遂げ、米国の純売上高は54%増加し、強い需要とブランドの勢いを示しています。\nAritziaはモバイルアプリを成功裏にローンチし、eコマース売上を大幅に押し上げ、ローンチ直後に100万ダウンロードを超えました。\n同社は不動産拡大戦略の一環として、主に米国で13の新規ブティックと4つの移転ブティックを開店し、優れた結果を生み出しています。\n今後のガイダンスは、第4四半期の売上高が11億ドルから11億2500万ドルの間になると予想され、2026年度の売上高予測は36億1500万ドルから36億4000万ドルに引き上げられ、引き続き好調なパフォーマンスを示唆しています。\nAritziaは2027年度に12から14の新規ブティックを開店する計画で、米国市場に焦点を当て、第2の米国配送センターを含むインフラにも投資します。\n経営陣は、戦略的マーケティング投資とデジタル成長施策に支えられ、2027年度の売上目標を予定より早く達成することに自信を示しました。",
        "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": "無効な search_keys_type パラメータ"
      }
    ]
  }
  ```

  ```json Response (401 Unauthorized) theme={null}
  {
    "ok": false,
    "errors": [
      {
        "code": "auth_failed",
        "id": "unauthorized",
        "value": "認証トークンが無効または存在しません"
      }
    ]
  }
  ```

  ```json Response (404 Not Found) theme={null}
  {
    "ok": false,
    "errors": [
      {
        "code": "no_data_found",
        "id": "not_found",
        "value": "指定された検索キーのロゴが見つかりませんでした"
      }
    ]
  }
  ```

  ```json Response (500 Internal Server Error) theme={null}
  {
    "ok": false,
    "errors": [
      {
        "code": "internal_server_error",
        "id": "server_error",
        "value": "リクエストの処理中に予期しないエラーが発生しました"
      }
    ]
  }
  ```
</ResponseExample>


## OpenAPI

````yaml ja/openapi/delivery_api.spec.yml GET /api/v1/transcripts/summaries/{call_id}
openapi: 3.0.0
info:
  contact: {}
  description: この REST API では、カンファレンスコールおよびその要約を取得するためのエンドポイントを提供しています。
  termsOfService: http://swagger.io/terms/
  title: Conference call transcripts
  version: 2.1.0
servers:
  - url: https://api.benzinga.com
    description: 本番
security: []
paths:
  /api/v1/transcripts/summaries/{call_id}:
    get:
      tags:
        - summaries
      summary: Call ID でサマリーを取得する
      description: 特定のコールIDの概要情報を取得します
      operationId: get-summary-by-call-id
      parameters:
        - description: サマリーに関連付けられているコールの一意な識別子
          in: path
          name: call_id
          required: true
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/domain.Summaries'
        '404':
          description: 見つかりませんでした
          content:
            application/json:
              schema:
                additionalProperties:
                  type: string
                type: object
        '500':
          description: 内部サーバーエラー
          content:
            application/json:
              schema:
                additionalProperties:
                  type: string
                type: object
      security:
        - ApiKeyAuth: []
components:
  schemas:
    domain.Summaries:
      properties:
        call_id:
          example: 770e8400-e29b-41d4-a716-446655440000
          type: string
        created_at:
          type: string
        deleted_at:
          type: string
        language:
          example: en
          type: string
        sentiment:
          example: 0.85
          type: number
        summary:
          example: The company reported positive growth...
          type: string
        summary_id:
          example: 550e8400-e29b-41d4-a716-446655440000
          type: string
        symbol:
          example: MSFT
          type: string
        transcript_id:
          example: 660e8400-e29b-41d4-a716-446655440000
          type: string
        updated_at:
          type: string
      type: object
  securitySchemes:
    ApiKeyAuth:
      in: query
      name: token
      type: apiKey

````