catalogue / suno-api
MusicRuns now
Suno Api
from $0.002
per run
one request; 0.4 credits at $0.005/credit
Fixed at intake, charged only on a successful run. Rate verified 2026-08-16 against api.kie.ai (Suno, Boost Music Style).
POST https://renderhour.com/api/gateway/v1/music/generations
ID=$(curl -s -X POST https://renderhour.com/api/gateway/v1/music/generations \
-H "Authorization: Bearer $RENDERHOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "kie/ai-music-api/add-instrumental",
"prompt": "A calm lo-fi track with soft piano and vinyl crackle"
}' | jq -r '.id')
# 202 Accepted — the render is queued; poll until it finishes.
while :; do
JOB=$(curl -s https://renderhour.com/api/gateway/v1/music/generations/$ID \
-H "Authorization: Bearer $RENDERHOUR_API_KEY")
case "$(echo "$JOB" | jq -r '.status')" in
succeeded) echo "$JOB" | jq -r '.data[0].url'; break ;;
failed|cancelled) echo "$JOB" | jq -r '.error // .status'; exit 1 ;;
esac
sleep 5
done$0.06 per run — one request; 12 credits at $0.005/credit. Quoted before the run; a failed run is not charged.
Runs against your own balance at that price. A failed run is not charged.
Or copy the request and run it with your RenderHour API key — the one in your profile.