Suno AI-modellen
AI music generation — full songs with vocals, instruments, and lyrics from text prompts.
Suno is the leading AI music generation platform, creating full songs — vocals, instruments, lyrics — from text prompts. Versions span V4 through V5.5, with V4.5 and later supporting up to 8 minutes.
- Eén API-key gedeeld tussen providers
- Modelskills brengen docs en schema's naar je workspace
- Betalen per call, zonder verplichting
- Mislukte generaties worden niet in rekening gebracht
Wat opvalt
Alle modellen van Suno
Installeer een Suno modelskill.
Kies een model en voeg de skill toe zodat je codeertool docs, schema's, prijsnotities en setupstappen heeft.
curl -X POST https://runapi.ai/api/v1/suno/cover_audio \
-H "Authorization: Bearer $RUNAPI_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "suno-v5.5",
"prompt": "Write a lo-fi chill beat with soft piano, vinyl crackle, and a gentle bass line, 2 minutes long."
}'
import { SunoClient } from "@runapi.ai/suno";
const client = new SunoClient();
const result = await client.coverAudio.run({
model: "suno-v5.5",
prompt: "Write a lo-fi chill beat with soft piano, vinyl crackle, and a gentle bass line, 2 minutes long.",
});
<?php
require __DIR__ . "/vendor/autoload.php";
use RunApi\Suno\SunoClient;
$client = new SunoClient();
$result = $client->coverAudio->run([
'model' => 'suno-v5.5',
'prompt' => 'Write a lo-fi chill beat with soft piano, vinyl crackle, and a gentle bass line, 2 minutes long.',
]);
require "runapi/suno"
client = RunApi::Suno::Client.new
result = client.cover_audio.run(
model: "suno-v5.5",
prompt: "Write a lo-fi chill beat with soft piano, vinyl crackle, and a gentle bass line, 2 minutes long."
)
npx skills add runapi-ai/suno -g
# Claude Code
claude mcp add runapi -s user -- npx -y @runapi.ai/mcp
# Codex
codex plugin install runapi-mcp@agents
# Cursor / Windsurf / VS Code
npx @runapi.ai/mcp init cursor
Alle varianten van Suno
| Model | Variant | Billing | From | |
|---|---|---|---|---|
|
Suno
|
suno-v4 | call | $0.120 | Bekijken → |
| suno-v4.5 | call | $0.120 | Bekijken → | |
| suno-v4.5-all | call | $0.120 | Bekijken → | |
| suno-v4.5-plus | call | $0.120 | Bekijken → | |
| suno-v5 | call | $0.030 | Bekijken → | |
| suno-v5.5 | call | $0.030 | Bekijken → |
Veelgestelde vragen over Suno
Is dit een officiële Suno-integratie?
RunAPI biedt een beheerde API-laag met transparante prijzen, mogelijkheden en foutgedrag.
Heb ik een Suno-account nodig?
Nee — je RunAPI-sleutel is genoeg voor beheerde toegang.
Wat is de extra latency door proxying?
Meestal onder de 20 ms. RunAPI houdt de proxylaag dicht bij de regio’s waar het model draait.
Worden afbeeldingen / video’s gecached?
Genereerde output wordt opgeslagen en is op te halen via task ID. Invoer wordt niet gecached.
Kan ik mijn eigen key gebruiken?
Nog niet — calls gebruiken RunAPI-beheerde toegang.