One key, every model
28 image, video, and audio models behind one REST API and one Gems balance. Switch models by changing the URL path.
At a glance
The Mage audio generation API runs Seed Audio at https://api.mage.space/v1/seed_audio/generate. Send a text prompt, optionally with voice references or an image, and receive an audio file up to 120 seconds long with voices, music, or sound effects. Each clip is paid in Gems, with no subscription.
1
audio models
$0.019
Cheapest default, per clip
20
Concurrent generations
$0
Monthly fee
Models
Prices are per generation, in Gems. 1,000 Gems cost $1 on the standard pack, and larger packs add bonus Gems. The price depends on the model, resolution, and duration; the default-settings price is shown, and every response reports the exact charge in billing.gems_charged. A generation that fails is refunded; one Mage's content policy blocks is not.
| Model | Best for | model_id values | Default price |
|---|---|---|---|
| Seed Audio | Voices, music, and sound effects from one prompt | seed-audio-1.0 | 19 Gems ($0.019) |
Quick start
Set MAGE_API_KEY, submit the request, and poll until it completes. Swap seed_audio in the URL for any model above.
STATUS_URL=$(curl --request POST 'https://api.mage.space/v1/seed_audio/generate' \
--header "Authorization: Bearer $MAGE_API_KEY" \
--header 'Content-Type: application/json' \
--data '{
"prompt": "A calm narrator reading a short weather report",
"duration": "5",
"model_id": "seed-audio-1.0"
}' | jq -r '.status_url')
# Repeat until status is "completed"; result.url is the file
curl "$STATUS_URL" --header "Authorization: Bearer $MAGE_API_KEY"import os, time, requests
headers = {"Authorization": f"Bearer {os.environ['MAGE_API_KEY']}"}
request = requests.post(
"https://api.mage.space/v1/seed_audio/generate",
headers=headers,
json={
"prompt": "A calm narrator reading a short weather report",
"duration": "5",
"model_id": "seed-audio-1.0"
},
).json()
while request["status"] in ("queued", "in_progress"):
time.sleep(3)
request = requests.get(request["status_url"], headers=headers).json()
print(request["status"], request["result"] and request["result"]["url"])const headers = {
Authorization: `Bearer ${process.env.MAGE_API_KEY}`,
'Content-Type': 'application/json',
};
let request = await fetch('https://api.mage.space/v1/seed_audio/generate', {
method: 'POST',
headers,
body: JSON.stringify({
"prompt": "A calm narrator reading a short weather report",
"duration": "5",
"model_id": "seed-audio-1.0"
}),
}).then((response) => response.json());
while (['queued', 'in_progress'].includes(request.status)) {
await new Promise((resolve) => setTimeout(resolve, 3000));
request = await fetch(request.status_url, { headers }).then((r) => r.json());
}
console.log(request.status, request.result?.url);How it works
Every model shares one authentication scheme, one asynchronous request lifecycle, and the same field names.
Sign in to Mage, open API → API Keys, and create a key. It starts with mage_sk_ and is shown once. An account can hold 10 active keys.
POST a JSON body to https://api.mage.space/v1/{model}/generate with an Authorization: Bearer header. The response returns at once with a request_id, a status, and a status_url. Send an Idempotency-Key header so a retry never pays twice.
Poll status_url until the status is completed, failed, or cancelled. A completed request carries result.url with the image, video, or audio file, kept for 30 days.
Built for production
28 image, video, and audio models behind one REST API and one Gems balance. Switch models by changing the URL path.
No subscription and no minimum spend. You buy Gems, and each request is charged its listed price. A generation that fails is refunded, unless Mage's content policy blocked it.
Idempotency keys make a retried submit return the original request without charging again.
Save a character or reference once, then write @handle in any prompt to use it with every model that supports it.
Send image, video, and audio inputs as URLs or data URLs, or upload files up to 100 MB through a signed upload.
Each account can run 20 generations at once, and the limit can be raised for your use case. Refused requests are never charged.
Use cases
Generate narration for videos, explainers, and audiobooks, with speech rate, loudness, and pitch controls.
Save a voice clip as a reference and mention it by @handle to keep the same voice across clips.
Create ambience, foley, and UI sounds from a description for games and apps.
Produce background music for social clips and ads from a prompt.
Pair Seed Audio with the video API to add sound to clips from silent models.
Let Claude, ChatGPT, or your own agent produce audio through the MCP server or the REST API.
FAQ
Yes. Seed Audio reads a script in a described voice, or in a saved voice reference, and exposes speech rate, loudness, and pitch settings. It also generates music and sound effects from the same prompt field.
Seed Audio generates clips up to 120 seconds.
There is no subscription or monthly fee. Each generation is paid in Gems at its model's listed price, and 1,000 Gems cost $1 on the standard pack. Every model page lists its default-settings price, and each response reports the exact charge. A generation that fails is refunded; one Mage's content policy blocks is not. A request your balance cannot cover is refused before anything is charged.
No. The API runs on Gems alone. Membership plans and their unlimited in-app generation do not apply to API requests, so any Mage account with Gems can call it.
Yes. Content you create with Mage, including through the API and MCP server, can be used commercially. Attribution is appreciated but not required.
An account can have 20 generations queued or running at once. A submit past that is refused with 429 and costs nothing. Write to [email protected] to raise the cap for your use case.
Yes. Agents can call the REST API with a key, or connect to the Mage MCP server, which gives Claude, ChatGPT, Claude Code, Grok, and Cursor sixteen ready-made tools for choosing a model, quoting the price, generating, and fetching the result. See the MCP server.
Point your client at https://api.mage.space/v1, send your Mage key as a Bearer token, and map your fields to the model page: prompt, aspect_ratio, resolution, duration, and model_id work the same way across every Mage model. Requests are asynchronous, so submit and then poll status_url.
One account, one Gems balance, every model. Pay only for what you generate.