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

# Get Transcript

> Return the transcript for a conversation.



## OpenAPI

````yaml /api-reference/openapi.json get /api/v1/agents/{agent_id}/conversations/{conversation_id}/transcript
openapi: 3.1.0
info:
  description: >
    Create and run form-filling voice agents, and read back the conversations
    they had.


    Send your API key on every request as `Authorization: Bearer fb_live_...`.

    A key belongs to one workspace and only reaches that workspace's agents.
    Create

    and revoke keys from Settings in the web app; keys cannot manage other keys.
  title: FormBharo API
  version: 1.0.0
servers:
  - description: Production
    url: https://form-fill-agent-backend.artpark.ai
security:
  - apiKey: []
paths:
  /api/v1/agents/{agent_id}/conversations/{conversation_id}/transcript:
    get:
      tags:
        - Agents
      summary: Get Transcript
      description: Return the transcript for a conversation.
      operationId: >-
        get_transcript_api_v1_agents__agent_id__conversations__conversation_id__transcript_get
      parameters:
        - in: path
          name: agent_id
          required: true
          schema:
            title: Agent Id
            type: string
        - in: path
          name: conversation_id
          required: true
          schema:
            title: Conversation Id
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/TranscriptEntry'
                title: >-
                  Response 200 Get Transcript Api V1 Agents  Agent Id 
                  Conversations  Conversation Id  Transcript Get
                type: array
          description: Successful Response
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          description: Validation Error
      security:
        - HTTPBearer: []
components:
  schemas:
    TranscriptEntry:
      additionalProperties: true
      description: One line of ``transcript.json``.
      properties:
        content:
          anyOf:
            - type: string
            - type: 'null'
          title: Content
        duration_secs:
          anyOf:
            - type: number
            - type: 'null'
          title: Duration Secs
        role:
          anyOf:
            - type: string
            - type: 'null'
          title: Role
        timestamp:
          anyOf:
            - type: number
            - type: 'null'
          title: Timestamp
      title: TranscriptEntry
      type: object
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          title: Detail
          type: array
      title: HTTPValidationError
      type: object
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          title: Location
          type: array
        msg:
          title: Message
          type: string
        type:
          title: Error Type
          type: string
      required:
        - loc
        - msg
        - type
      title: ValidationError
      type: object
  securitySchemes:
    apiKey:
      bearerFormat: fb_live_...
      scheme: bearer
      type: http

````