Sam Audio Large Serverless API
Isolates any described sound from mixed audio for enhanced editing and analysis.
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) 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
https://api.segmind.com/v1/sam-audio-largeParameters
audiorequiredstring (uri)Provide the audio file URL/Base64 to separate sound. Use a clear sample for best results.
descriptionrequiredstringDefine the sound to isolate, like 'drums'. Specify precise sounds for better separation.
output_formatoptionalstringSelect the output audio format. Choose WAV for quality or MP3 for smaller size.
"wav""wav""mp3"reranking_candidatesoptionalintegerSets the number of candidates for best result. Use higher numbers for quality.
1Range: 1 - 8Response Type
Returns: Audio
Common Error Codes
The API returns standard HTTP status codes. Detailed error messages are provided in the response body.
Bad Request
Invalid parameters or request format
Unauthorized
Missing or invalid API key
Forbidden
Insufficient permissions
Not Found
Model or endpoint not found
Insufficient Credits
Not enough credits to process request
Rate Limited
Too many requests
Server Error
Internal server error
Bad Gateway
Service temporarily unavailable
Timeout
Request timed out