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

# Get recording metadata



## OpenAPI

````yaml get /api/recordings/{recording_id}/metadata
openapi: 3.1.0
info:
  title: Voice Runtime Proxy & Recording API
  description: >-
    API for voice runtime WebSocket proxying, call recordings, CDR ingestion,
    and static UI serving.
  version: 1.0.0
servers:
  - url: http://localhost:9511/
security: []
tags:
  - name: Voice Runtime
  - name: Recordings
  - name: CDR
  - name: Static
paths:
  /api/recordings/{recording_id}/metadata:
    get:
      tags:
        - Recordings
      summary: Get recording metadata
      parameters:
        - name: recording_id
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Recording metadata
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RecordingMetadata'
components:
  schemas:
    RecordingMetadata:
      type: object
      properties:
        transaction_id:
          type: string
          format: uuid
        duration_ms:
          type: integer
        start_time:
          type: string
          format: date-time
        user_frames:
          type: integer
        agent_frames:
          type: integer

````