---
title: "Suno API — All variants, pricing, code samples | RunAPI"
url: "https://runapi.ai/models/suno.md"
canonical: "https://runapi.ai/models/suno.md"
locale: "en"
model: "Suno"
provider: "Suno"
modality: "audio_music"
variant_count: 7
price_from_cents: 0
---

# Suno

AI music generation — create full songs with vocals, instruments, and lyrics from a text prompt.

**Provider:** Suno
**Modality:** Audio &amp; Music
**Catalog:** 7 variants

Suno generates complete songs from text prompts, including vocals, instrumentation, and lyrics. It spans V3.5 through V5.5, with each generation producing broadcast-ready tracks across any musical genre.

## Variants

| Version | Variant | Pricing | Billing | URL |
|---|---|---|---|---|
| suno-v3.5 | `v3.5` | $0.120 | call | https://runapi.ai/models/suno/v3.5.md |
| suno-v4 | `v4` | $0.120 | call | https://runapi.ai/models/suno/v4.md |
| suno-v4.5 | `v4.5` | $0.120 | call | https://runapi.ai/models/suno/v4.5.md |
| suno-v4.5-all | `v4.5-all` | $0.120 | call | https://runapi.ai/models/suno/v4.5-all.md |
| suno-v4.5-plus | `v4.5-plus` | $0.120 | call | https://runapi.ai/models/suno/v4.5-plus.md |
| suno-v5 | `v5` | $0.050 | call | https://runapi.ai/models/suno/v5.md |
| suno-v5.5 | `v5.5` | $0.050 | call | https://runapi.ai/models/suno/v5.5.md |

## Utility endpoints

| Endpoint | Pricing | Billing |
|---|---|---|
| `separate_audio_stems` | $0.100 | call |
| `visualize_music` | $0.020 | call |
| `generate_lyrics` | $0.010 | call |
| `replace_section` | $0.050 | call |
| `convert_audio` | $0.010 | call |
| `generate_persona` | $0.500 | call |
| `boost_style` | $0.010 | call |
| `get_timestamped_lyrics` | $0.010 | call |
| `generate_artwork` | $0.0000 | call |
| `generate_midi` | $0.0000 | call |

## Install

```sh
npm install @runapi.ai/suno
# or
gem install runapi-suno
```

## Quickstart

```sh
curl -X POST https://runapi.ai/api/v1/suno/cover_audio \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  -d '{ "model": "suno-v3.5", "prompt": "..." }'
```

## Context

Suno is an AI music generation platform that creates original songs — vocals, instruments, and lyrics — from text descriptions. Through RunAPI, all Suno versions share a single API key with per-call billing.

## FAQ

### Which variant should I start with?

Pick the cheapest variant that meets your quality bar. Most teams start on the fast variant and graduate to pro for production.

### Is there a free tier?

New accounts get free first calls on every model. After that, pay per call.

### Do you stream results?

Where streaming is available, RunAPI streams end-to-end.

### How are failures billed?

Failed generations are not charged.

### Are outputs cached?

Generated outputs are stored and retrievable by task ID. Inputs are not cached.

### Can I use commercially?

Yes — commercial use is included for every variant unless a model license explicitly restricts it, which is called out on the variant page.

### What about rate limits?

Per-key rate limits scale with usage tier. See pricing page for current limits.

### Where can I report issues?

Open an issue on the public GitHub repo or email support.

