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

# Get Conference Call Info by ID

> Get conference call transcript by call_id.

<ResponseExample>
  ```json Response (200 OK) theme={null}
  {
      "call_id": "302a052c-14e6-406e-b6a6-5bce71d2bfdb",
      "call_title": "OFG Bancorp reports strong Q1 results, raises dividend 20% amid loan growth",
      "headline": "OFG Bancorp generates $1 EPS with solid loan growth and digital innovation",
      "symbol": "OFG",
      "exchange": "ALL",
      "figis": [
          "BBG016K9RJN7",
          "BBG001S9J8R0"
      ],
      "name": "",
      "start_time": "2025-04-23T11:34:15-04:00",
      "end_time": "2025-04-23T12:11:15-04:00",
      "duration": 37,
      "status": "COMPLETED",
      "created_at": "2025-04-23T15:34:15Z",
      "updated_at": "2025-04-23T16:11:15Z",
      "transcripts": [
          {
            "transcript_id": "914369e3-cc94-4e2b-9172-042c9b9e34ca",
              "text": "Please stand by. Your program is about to begin. Good morning... You may now disconnect",
            "language": "en-US",
              "confidence_score": 0.9542389225423727,
              "segments": [
                  {
                      "segment_id": 0,
                      "speaker": "Madison",
                      "start_time": "1200",
                      "end_time": "76640",
                      "confidence": 0.9834538,
                    "text": "Please stand by.",
                    "sentiment": 0
                  }],
              "type": "NON_LIVE"
          }
      ],
    "recording": {
          "recording_id": "5c41bd74-0d7f-4667-8c09-5c25902b5f12",
          "total_files": 382,
          "total_size": 19487716,
          "duration": 37,
          "location": "assets/302a052c-14e6-406e-b6a6-5bce71d2bfdb",
          "bucket": "earnings-call-media",
          "language": "en",
          "formats": [
              {
                  "file_link": "302a052c-14e6-406e-b6a6-5bce71d2bfdb/hls/index.m3u8",
                  "size": 11378,
                  "content_type": "application/vnd.apple.mpegurl",
                  "quality": "720p"
              },
              {
                  "file_link": "302a052c-14e6-406e-b6a6-5bce71d2bfdb/mp3/audio.mp3",
                  "size": 4535978,
                  "content_type": "audio/mpeg",
                  "quality": "192kbps"
              }
          ],
          "created_at": "0001-01-01T00:00:00Z"
      },
    "summary": {
          "summary_id": "6a6bebc0-a94c-41b7-8bf7-f1c24794bb2f",
          "transcript_id": "",
          "call_id": "302a052c-14e6-406e-b6a6-5bce71d2bfdb",
          "summary": "- OFG Bancorp reported strong financial performance, with earnings per share diluted at $1, driven by
          effective operating execution and growth in loans and deposits. Despite a slight decline in total interest income
          due to fewer business days, the overall financial metrics were stable, supported by strategic share buybacks and
          a 20% dividend increase.
           - Strategic initiatives focused on digital innovation, with significant growth in digital enrollment and transactions.
           Three new digital tools were launched, including an Omnichannel app, Smart Banking insights, and Apple Pay integration,
           reinforcing OFG's position as a leader in digital banking in Puerto Rico.
           - The future outlook is cautiously optimistic, with stable credit quality and continued investment in digital strategies.
           Despite potential macroeconomic and geopolitical volatility, OFG maintains a strong capital position, with a CET1 ratio
           of 14.27%, and remains focused on deepening customer relationships and expanding its client base.",
          "symbol": "",
          "sentiment": 0,
          "language": "",
          "created_at": "2025-04-23T15:34:15Z",
          "updated_at": "2025-04-23T15:34:15Z"
      },
      "participants": [
          {
              "participant_id": "b879ece6-b0c9-4fc2-a1ab-a7f3cef2dc4a",
              "call_id": "302a052c-14e6-406e-b6a6-5bce71d2bfdb",
              "name": "Jose Rafael Fernandez",
              "role": "Chief Executive Officer and Chairman of the Board of Directors",
              "organization": "",
              "mentions": 5,
              "human_verified": false
          }
            ],
      "securities": [
          {
              "figi": "BBG016K9RPW3",
              "isin": "GB00BNGFHX14",
              "name": "OCTOPUS FUTURE GENERATIONS V",
              "symbol": "OFG",
              "mic_code": "XLON",
              "figi_composite": "BBG016K9RJH4",
              "figi_share_class": "BBG016K9RJN7",
              "refinitiv_exch_code": "LSE"
          },
          {
              "figi": "BBG000F5VMF2",
              "isin": "PR67103X1020",
              "name": "OFG BANCORP",
              "symbol": "OFG",
              "mic_code": "XNYS",
              "figi_composite": "BBG000F5VMF2",
              "figi_share_class": "BBG001S9J8R0",
              "refinitiv_exch_code": "NYQ"
          }
      ]
  }
  ```
</ResponseExample>


## OpenAPI

````yaml get /api/v1/calls/{call_id}
openapi: 3.0.0
info:
  title: Conference Call Transcripts
  version: 1.0.0
  description: This REST API provides endpoints to search for conference call transcripts.
servers:
  - url: https://api.finvera.news/delivery
    description: Production server
security: []
paths:
  /api/v1/calls/{call_id}:
    get:
      tags:
        - Conference Call Transcripts
      summary: Get Conference Call Info by ID
      description: Get conference call transcript by call_id.
      operationId: get-conference-calls-by-id
      parameters:
        - name: call_id
          in: path
          required: true
          schema:
            type: string
            example: '12456788674'
        - name: audio
          description: true to include audio URL in response
          in: query
          schema:
            type: boolean
            example: true
        - name: format
          description: whether to return the transcript in 'json' or 'html' format
          in: query
          schema:
            type: string
            enum:
              - json
              - html
            example: html
        - name: clean
          description: >-
            to clean the transcript text and combine adjacent utterances by the
            same speaker
          in: query
          schema:
            type: boolean
            example: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
        '401':
          description: Authentication information is missing or invalid.
        '404':
          description: A transcript for the provided ticker symbol was not found.
      security:
        - ApiKeyAuth: []
components:
  securitySchemes:
    ApiKeyAuth:
      in: query
      name: apikey
      type: apiKey

````