back

ACE-Step Music

Recommended
ACE Studio, open modelacestep-musicModel source: Hugging Face

Composes a complete song from lyrics and a style.

What it does

Text to music

music

How it is charged

Each song

0.50 €

Where it runs

Spain (EU)

MIG B200

Brain size

Small and fast

Text to music, Cover versions, Redo sections, Split stems, Edit the song

What it is good at

  • Text to music. Composes the whole song from lyrics and a style.
  • Cover versions. Redoes an existing song in another style or another voice.
  • Redo sections. Regenerates just one section and leaves the rest as it was.
  • Split stems. Splits the mix into stems: vocals, drums, bass.
  • Edit the song. Changes the lyrics or the style without starting the song over.

Pricing

€ per song, VAT included

Each song (use)0.50 €
try it with 50 € freeNo card, and you only pay for what you use.

For your technical team

It is asynchronous: you send the request, poll the status until it finishes and download the track.

# 1. Enviar: devuelve un job_id (HTTP 202)
curl -sX POST https://api.gpuflow.ai/v1/music/generations \
  -H "Authorization: Bearer $GPUFLOW_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{ "model": "acestep-music",
        "lyrics": "la la la, sunny day",
        "caption": "upbeat pop, piano",
        "duration_seconds": 60 }'

# 2. Consultar el estado hasta "succeeded" (tarda minutos)
curl https://api.gpuflow.ai/v1/music/generations/JOB_ID \
  -H "Authorization: Bearer $GPUFLOW_API_KEY"

# 3. Descargar la pista
curl https://api.gpuflow.ai/v1/music/generations/JOB_ID/audio \
  -H "Authorization: Bearer $GPUFLOW_API_KEY" --output song.mp3