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

# Bleep

> Bleep an audio given the timestamps to bleep.



## OpenAPI

````yaml /openapi/privateai_3.3.0.json post /v3/bleep
openapi: 3.0.2
info:
  title: API Reference
  description: Private AI API Reference
  termsOfService: https://www.private-ai.com/terms-of-use/
  contact:
    url: https://www.private-ai.com/contact/
    email: info@private-ai.com
  version: 3.3.0
servers:
  - url: https://api.private-ai.com/deid
    description: Private AI Demo Server
  - url: http://localhost:8080
    description: Local Server
security: []
paths:
  /v3/bleep:
    post:
      summary: Bleep
      description: Bleep an audio given the timestamps to bleep.
      operationId: bleep_v3_bleep_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BleepRequest'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BleepResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    BleepRequest:
      title: BleepRequest
      required:
        - file
        - timestamps
      type: object
      properties:
        file:
          title: File
          allOf:
            - $ref: '#/components/schemas/FileData'
          description: >-
            File object containing base64 encoded text data and its content
            type.
        timestamps:
          title: Timestamps
          type: array
          items:
            $ref: '#/components/schemas/PIITimestamp'
    BleepResponse:
      title: BleepResponse
      required:
        - bleeped_file
      type: object
      properties:
        bleeped_file:
          title: Bleeped File
          type: string
          description: the base64 encoded file content of the redacted file.
    HTTPValidationError:
      title: HTTPValidationError
      type: object
      properties:
        detail:
          title: Detail
          type: array
          items:
            $ref: '#/components/schemas/ValidationError'
    FileData:
      title: FileData
      required:
        - data
        - content_type
      type: object
      properties:
        data:
          title: Data
          type: string
          description: Base64 encoded ASCII text data.
        content_type:
          title: Content Type
          type: string
          description: Content type of the data.
    PIITimestamp:
      title: PIITimestamp
      required:
        - start
        - end
      type: object
      properties:
        start:
          title: Start
          type: number
        end:
          title: End
          type: number
    ValidationError:
      title: ValidationError
      required:
        - loc
        - msg
        - type
      type: object
      properties:
        loc:
          title: Location
          type: array
          items:
            anyOf:
              - type: string
              - type: integer
        msg:
          title: Message
          type: string
        type:
          title: Error Type
          type: string

````