AI music generation from a text prompt
AI music generation from a text prompt. Creates a complete original song with vocals, melody, and full arrangement as a finished MP3, not a loop or preview. Describe genre, mood, instrumentation, and tempo, supply your own lyrics, request an instrumental, or pin a style tag. Use for soundtracks under video, release-ready artist tracks, podcast and game themes, and demo sketches. Async: poll songId until model_version leaves 'pending'.
500000 (raw units)
price
16
calls / 30d
6
unique payers
2026-09-17
updated
Provider
app.suedeai.ai · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x10FF767043A1723E0BB5B9207bC37D3442cC9E4F",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "500000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"custom_mode": false,
"lyrics": "<lyrics>",
"make_instrumental": false,
"prompt": "<prompt>",
"style": "<style>",
"tags": "<tags>",
"vocal_gender": "m"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"shareUrl": "https://app.suedeai.ai/share/example-track"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"custom_mode": {
"description": "Set to true to use your own lyrics provided in the 'lyrics' field.",
"type": "boolean"
},
"lyrics": {
"description": "Your custom lyrics. Required if custom_mode is true.",
"type": "string"
},
"make_instrumental": {
"description": "If true, generates a track without vocals.",
"type": "boolean"
},
"prompt": {
"description": "Describe the song you want to create. Include genre, mood, instruments, and any specific vibe. Example: 'Upbeat 80s synthwave with driving bass and neon atmosphere' or 'A melancholic acoustic guitar ballad about rain'.",
"type": "string"
},
"style": {
"description": "Specific musical style or genre tag (e.g., 'Hip Hop', 'Ambient', 'Rock'). Helping the AI focus on a specific sound.",
"type": "string"
},
"tags": {
"description": "Comma-separated keywords to tag the generated file.",
"type": "string"
},
"vocal_gender": {
"description": "Preferred gender for the vocalist ('m' for male, 'f' for female).",
"enum": [
"m",
"f"
],
"type": "string"
}
},
"required": [
"prompt"
],
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"headers": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"method": {
"enum": [
"POST",
"PUT",
"PATCH"
],
"type": "string"
},
"queryParams": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"imageUrl": {
"description": "Cover art image URL.",
"format": "uri",
"type": "string"
},
"shareUrl": {
"description": "Public URL to listen to and download the track.",
"format": "uri",
"type": "string"
},
"title": {
"description": "Title of the generated track.",
"type": "string"
}
},
"required": [
"shareUrl"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
},
"skyfire": {
"description": "Suede also accepts Skyfire pay+jwt/kya-pay+jwt tokens in the PAYMENT-SIGNATURE header on this endpoint.",
"header": "PAYMENT-SIGNATURE",
"tokenTypes": [
"pay+jwt",
"kya-pay+jwt"
]
}
}Use it
curl
curl "https://app.suedeai.ai/create-music" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://app.suedeai.ai/create-music");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://app.suedeai.ai/create-music")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/2200.json, and this resource appears in /discovery/resources and /discovery/search.