---
title: "Suno suno-v5.5 API — Pricing, code samples | RunAPI"
url: "https://runapi.ai/models/suno/v5.5.md"
canonical: "https://runapi.ai/models/suno/v5.5.md"
locale: "en"
model: "Suno"
provider: "Suno"
variant_id: "suno-v5.5"
sdk_model_id: "suno-v5.5"
modality: "audio_music"
price_from_cents: 5
billing_unit: "call"
status: "active"
---

# Suno suno-v5.5 API

Same API, same SDK — switch variants by changing one parameter.

## Pricing

**$0.050** per call

Failed generations are not charged

## Spec sheet

| Field | Value |
|---|---|
| Model ID | `suno-v5.5` |
| Provider | Suno |
| Modality | audio_music |
| Task type | asynchronous |
| Billing unit | call |
| API endpoint | `/api/v1/suno/text_to_sound` |
| Status | active |

## Install

```sh
npm install @runapi.ai/suno
```

## Quickstart

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

```js
import RunAPI from "@runapi.ai/suno";

const client = new RunAPI(process.env.RUNAPI_KEY);
const task = await client.create({
  model: "suno-v5.5",
  prompt: "...",
});
```

## FAQ

### Is the model ID stable across versions?

RunAPI keeps the model ID stable and handles compatible version refreshes without changing your request shape.

### What&#39;s the rate limit on this variant?

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

### Can I switch variants later?

Yes — variant is a flag. Switch by changing the model parameter.

### Does it stream?

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

### Where do I report quality issues?

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


## Related

Other Suno variants:

- [suno-v3.5](https://runapi.ai/models/suno/v3.5.md) — `v3.5` · $0.120
- [suno-v4](https://runapi.ai/models/suno/v4.md) — `v4` · $0.120
- [suno-v4.5](https://runapi.ai/models/suno/v4.5.md) — `v4.5` · $0.120
- [suno-v4.5-all](https://runapi.ai/models/suno/v4.5-all.md) — `v4.5-all` · $0.120
- [suno-v4.5-plus](https://runapi.ai/models/suno/v4.5-plus.md) — `v4.5-plus` · $0.120
- [suno-v5](https://runapi.ai/models/suno/v5.md) — `v5` · $0.050
