v1

latestOpenAPI 3.0.02026-07-26355125.0 KB

Get Vocal Separation Details

get/api/v1/vocal-removal/record-info

Query parameters

taskIdstring required

The task ID returned from the Separate Vocals from Music endpoint. Used to retrieve detailed information about a specific vocal separation task, including download URLs for all separated audio components.

Response

Request successful

code200 | 400 | 401 | 404 | 405 | 413 | 429 | 430 | 455 | 500

Status Codes

  • ✅ 200 - Request successful
  • ⚠️ 400 - Invalid parameters
  • ⚠️ 401 - Unauthorized access
  • ⚠️ 404 - Invalid request method or path
  • ⚠️ 405 - Rate limit exceeded
  • ⚠️ 413 - Theme or prompt too long
  • ⚠️ 429 - Insufficient credits
  • ⚠️ 430 - Your call frequency is too high. Please try again later.
  • ⚠️ 455 - System maintenance
  • ❌ 500 - Server error
msgstring

Error message when code != 200

Example response

{
  "code": 200,
  "msg": "success",
  "data": {
    "response": {
      "originData": [
        {
          "duration": 339.8,
          "audio_url": "https://example.mp3",
          "stem_type_group_name": "Vocals",
          "id": "8ca376e7-2693-48d2-875d-08aaf2c6dd27"
        }
      ]
    }
  }
}