import requests
url = "https://api.musicgpt.com/api/public/v1/file_convert"
headers = {
"Authorization": "<<<api key>>>"
}
# Option 1: URL
payload = {
"audio_url": "https://example.com/audio.mp3",
"target_format": "wav",
"target_sr": 44100,
"webhook_url": "https://your-webhook-url.com/callback"
}
response = requests.post(url, headers=headers, data=payload)
print(response.json())
# Option 2: File Upload
# payload = {
# "target_format": "flac",
# "target_bit_depth": 24,
# "webhook_url": "https://your-webhook-url.com/callback"
# }
# with open("audio.mp3", "rb") as f:
# files = {"audio_file": f}
# response = requests.post(url, headers=headers, data=payload, files=files)
# print(response.json())
{
"success": true,
"task_id": "convert789",
"conversion_id": "conv456",
"output_path": "https://storage.example.com/converted/audio.wav",
"credit_estimate": 100.1
}
Initiate a file conversion task using either an audio URL or file upload with optional format parameters and webhook callback.
import requests
url = "https://api.musicgpt.com/api/public/v1/file_convert"
headers = {
"Authorization": "<<<api key>>>"
}
# Option 1: URL
payload = {
"audio_url": "https://example.com/audio.mp3",
"target_format": "wav",
"target_sr": 44100,
"webhook_url": "https://your-webhook-url.com/callback"
}
response = requests.post(url, headers=headers, data=payload)
print(response.json())
# Option 2: File Upload
# payload = {
# "target_format": "flac",
# "target_bit_depth": 24,
# "webhook_url": "https://your-webhook-url.com/callback"
# }
# with open("audio.mp3", "rb") as f:
# files = {"audio_file": f}
# response = requests.post(url, headers=headers, data=payload, files=files)
# print(response.json())
{
"success": true,
"task_id": "convert789",
"conversion_id": "conv456",
"output_path": "https://storage.example.com/converted/audio.wav",
"credit_estimate": 100.1
}
Successfully initiated file conversion
The response is of type object
.