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

# Get Recordings by Call ID

> Get all recordings for a call.

Returns recordings if the call belongs to an assistant in your organization.

This endpoint retrieves a list of all recordings associated with a specific call, identified by its database ID.

### Path Parameters

* `call_id` (integer, **required**): The unique identifier for the call.

### Response

The response is a JSON array of recording objects. Each object contains details about a recording, including the provider or storage URL when available.

```json Response theme={null}
[
  {
    "id": 1,
    "call_id": 101,
    "recording_sid": "RExxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
    "file_path": null,
    "recording_url": "https://api.twilio.com/2010-04-01/Accounts/AC.../Recordings/RE...",
    "duration": 300.0,
    "format": "wav",
    "recording_type": "full",
    "recording_source": "twilio",
    "status": "completed",
    "created_at": "2023-10-30T10:05:01Z"
  }
]
```


## OpenAPI

````yaml GET /api/v1/calls/{call_id}/recordings
openapi: 3.1.0
info:
  title: Burki
  description: A system that uses AI to answer customer Calls.
  version: 0.1.0
servers: []
security: []
paths:
  /api/v1/calls/{call_id}/recordings:
    get:
      tags:
        - calls
      summary: Get Call Recordings
      description: >-
        Get all recordings for a call.


        Returns recordings if the call belongs to an assistant in your
        organization.
      operationId: get_call_recordings_api_v1_calls__call_id__recordings_get
      parameters:
        - name: call_id
          in: path
          required: true
          schema:
            type: integer
            title: Call Id
        - name: recording_type
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Filter by recording type
            title: Recording Type
          description: Filter by recording type
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/RecordingResponse'
                title: >-
                  Response Get Call Recordings Api V1 Calls  Call Id  Recordings
                  Get
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    RecordingResponse:
      properties:
        recording_sid:
          anyOf:
            - type: string
            - type: 'null'
          title: Recording Sid
        file_path:
          anyOf:
            - type: string
            - type: 'null'
          title: File Path
        recording_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Recording Url
        duration:
          anyOf:
            - type: number
            - type: 'null'
          title: Duration
        format:
          anyOf:
            - type: string
            - type: 'null'
          title: Format
          default: wav
        recording_type:
          anyOf:
            - type: string
            - type: 'null'
          title: Recording Type
          default: full
        recording_source:
          anyOf:
            - type: string
            - type: 'null'
          title: Recording Source
          default: twilio
        status:
          anyOf:
            - type: string
            - type: 'null'
          title: Status
          default: recording
        id:
          type: integer
          title: Id
        call_id:
          type: integer
          title: Call Id
        created_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Created At
      type: object
      required:
        - id
        - call_id
      title: RecordingResponse
      description: Schema for recording response.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````