Sam Audio Large Serverless API

Isolate any described sound from mixed audio tracks.

~12.63s
~$0.062
 1import requests
 2import json
 3
 4url = "https://api.segmind.com/v1/sam-audio-large"
 5headers = {
 6    "x-api-key": "YOUR_API_KEY",
 7    "Content-Type": "application/json"
 8}
 9
10data = {
11    "audio": "https://segmind-resources.s3.amazonaws.com/input/05f46d53-2089-473b-be52-c054174952dd-sample_input.mp3",
12    "description": "a man speaking",
13    "output_format": "wav",
14    "reranking_candidates": 4
15}
16
17response = requests.post(url, headers=headers, json=data)
18
19if response.status_code == 200:
20    result = response.json()
21    print(json.dumps(result, indent=2))
22else:
23    print(f"Error: {response.status_code}")
24    print(response.text)

API Endpoint

POSThttps://api.segmind.com/v1/sam-audio-large

Parameters

audiorequired
string (uri)

Audio file URL or base64 to separate into components.

descriptionrequired
string

Describe the sound to isolate, e.g., drums or vocals.

output_formatoptional
string

Output audio format. WAV for quality, MP3 for smaller size.

Default: "wav"
Allowed values :
"wav""mp3"
reranking_candidatesoptional
integer

Number of separation candidates. Higher values improve quality.

Default: 1Range: 1 - 8

Response Type

Returns: Audio

Common Error Codes

The API returns standard HTTP status codes. Detailed error messages are provided in the response body.

400

Bad Request

Invalid parameters or request format

401

Unauthorized

Missing or invalid API key

403

Forbidden

Insufficient permissions

404

Not Found

Model or endpoint not found

406

Insufficient Credits

Not enough credits to process request

429

Rate Limited

Too many requests

500

Server Error

Internal server error

502

Bad Gateway

Service temporarily unavailable

504

Timeout

Request timed out