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

# Upload audio

> Uploads an MP3 audio file and associates it with a vendor.



## OpenAPI

````yaml https://api.musique.app/api/integration/docs-json post /api/v1/integration/audio
openapi: 3.0.0
info:
  title: Musique Integration API
  description: Public API documentation for integration partners
  version: 1.0.0
  contact: {}
servers: []
security: []
tags: []
paths:
  /api/v1/integration/audio:
    post:
      tags:
        - Integration / Audio
      summary: Upload audio
      description: Uploads an MP3 audio file and associates it with a vendor.
      operationId: IntegrationAudioController_uploadAudio
      parameters: []
      requestBody:
        required: true
        description: MP3 audio file and vendor identifier
        content:
          multipart/form-data:
            schema:
              type: object
              required:
                - file
                - vendorNameID
              properties:
                file:
                  type: string
                  format: binary
                  description: MP3 audio file
      responses:
        '201':
          description: Audio uploaded successfully
          content:
            application/json:
              schema:
                example:
                  audioId: 1
        '400':
          description: Invalid file (only MP3 allowed) or missing file
        '401':
          description: Invalid or missing API key
        '404':
          description: Vendor not found
      security:
        - api-key: []
components:
  securitySchemes:
    api-key:
      type: apiKey
      in: header
      name: x-api-key

````