Live · agent-callable
The Musician's Terminal
17 pay-per-call endpoints for music, voice, stems, video, and rights. Pay-per-call, USDC settled on Base, no signup, no API key. Every endpoint is callable by an agent in a single 402-sign-retry round trip.
- Per-call price
- $0.02$1.50
- Settlement
- USDC on Base
- Agent ARPU / month
- ~$22.50
- Endpoints
- 17 live · 12 new
Generation
6 toolsCompose, extend, cover, and continue tracks.
Generate a full track from a text prompt with lyrics and stems.
Price$0.20/ callPOST/create-musicSame generation pipeline, optimized for autonomous agent calls.
Price$0.20/ callPOST/agent/generateTake an existing track and extend it forward by a chosen duration.
Price$0.40/ callPOST/v1/extendRe-perform a track in a different genre, style, or tempo.
Price$0.40/ callPOST/v1/coverUpload a vocal take and re-cover it with a different voice.
Price$0.40/ callPOST/v1/voice-coverUpload a clip and continue its arrangement seamlessly forward.
Price$0.40/ callPOST/v1/continueStems + voice
3 toolsSplit a master into stems or pull an acapella.
Split a master into vocal, drums, bass, and other 4-track stems.
Price$0.40/ callPOST/v1/stems?mode=fullVocal + instrumental split for lightweight remix and karaoke use.
Price$0.20/ callPOST/v1/stems?mode=basicExtract a clean isolated vocal from a mixed master track.
Price$0.20/ callPOST/v1/voxProcessing
3 toolsLightweight transforms: MIDI, mastered WAV, timed lyrics.
Transcribe an audio clip into a multi-track MIDI file.
Price$0.10/ callPOST/v1/midiMaster and export a track to high-quality, distribution-ready WAV.
Price$0.10/ callPOST/v1/wavAlign lyric text to audio with per-line timestamps for captions.
Price$0.10/ callPOST/v1/lyric-syncText
2 toolsGenerate lyrics and style tags from a prompt.
Generate original song lyrics from a theme, mood, or seed line.
Price$0.04/ callPOST/v1/lyricsUpgrade rough style tags into a richer, model-ready prompt.
Price$0.02/ callPOST/v1/style-coachVideo + rights
3 toolsRender video and verify rights or analyze audio on-chain.
Render a 10-second cinematic or realistic video from a prompt.
Price$1.50/ callPOST/agent/videoResolve an on-chain rights passport for any registered work.
Price$0.005/ callGET/v1/rights/{assetHash}Run BPM, key, loudness, and structural analysis on an audio file.
Price$0.003/ callPOST/v1/analyzeFor agents
One flow. Discover, sign, get the work back.
Every endpoint speaks the same x402 dialect. Hit it without payment, parse the 402 challenge, sign the USDC transfer, retry with the payment header. The response ships in the same request with a settlement tx hash on Base.
# 1. Discover the terminal
curl https://app.suedeai.ai/.well-known/x402.json
# 2. Call any tool without payment -> receive a 402 challenge
curl -i -X POST https://app.suedeai.ai/v1/stems?mode=full \
-H 'content-type: application/json' \
--data '{"audioUrl":"https://example.com/master.wav"}'
# -> HTTP/1.1 402 Payment Required
# -> X-Payment-Required: <base64 EIP-3009 challenge>
# 3. Sign the USDC transfer, retry with the X-Payment header
curl -i -X POST https://app.suedeai.ai/v1/stems?mode=full \
-H 'content-type: application/json' \
-H 'X-Payment: <base64 signature>' \
--data '{"audioUrl":"https://example.com/master.wav"}'
# -> 200 OK
# -> X-Payment-Response: <settlement tx hash on Base>
# -> { "stems": { ... }, "provider": "suede", "modelVersion": "suede-pro-v1" }