Revocalize AI
    Revocalize AI
    • Convert Audio File
      POST
    • Check Task Status
      GET
    • Get Available Models
      GET
    • Create Model
      POST
    • Train Model
      POST

      Convert Audio File

      Develop Env
      https://dev.your-api-server.com
      Develop Env
      https://dev.your-api-server.com
      POST
      /convert
      This endpoint takes a WAV vocal audio file and returns a URL string with the converted vocals audio file.

      Request

      Header Params

      Body Params multipart/form-data

      Responses

      🟢200Success
      application/json
      Body

      Request Request Example
      Shell
      JavaScript
      Java
      Swift
      curl --location --request POST 'https://dev.your-api-server.com/convert' \
      --header 'Authorization: Bearer <token>' \
      --form 'audio="/path_to_audio_file.wav"' \
      --form 'model="andra"' \
      --form 'transpose="0"' \
      --form 'generations_count="4"'
      Response Response Example
      {
        "task_id": "123456"
      }
      
      Modified at 2024-07-11 09:33:41
      Next
      Check Task Status
      Built with