> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mountsea.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Create 选项

> 官网 Create 表单 → API 字段。不传则行为与计费保持原样。

# Create 选项

官网 suno.com **Create → More Options** 对应 `/suno/v2/generate` 字段。**全部可选。** 不传则行为 / 计费与以前一致。

配合 [生成音乐](/zh/api-reference/suno/generate) 使用。各任务字段见 [Generate Schema](/zh/api-reference/suno/generateSchema)。

## 官网 UI → API

| 官网 Create                    | API 字段                          | 说明                                                                                                                   |
| ---------------------------- | ------------------------------- | -------------------------------------------------------------------------------------------------------------------- |
| **Max Mode**                 | `max_mode`                      | `true` = 更多算力、全曲更稳。官方账号积分 **2 倍**；平台在 `max_mode=true` 时按规则 **2 倍计费**。不传 / `false` = 现价。**`gen_stem_*` 和 `sound` 忽略** |
| **Personalize / My Taste**   | `use_personalization`           | 使用所选官方账号的口味画像。**不保证生效**（池账号可能没有口味数据）。不传 / `false`                                                                    |
| **Vocal Gender**             | `vocal_gender`                  | `m` / `f`。不传 = 不指定                                                                                                   |
| **Exclude styles**           | `negative_tags`                 | 字符串或字符串数组                                                                                                            |
| **Style Influence**          | `controls.style_weight`         | 0\~1                                                                                                                 |
| **Weirdness**                | `controls.weirdness_constraint` | 0\~1；越高越实验                                                                                                           |
| **Variety**                  | `controls.aug_creativity`       | 整数 **0\~4**。`2` = Normal（官网默认），`4` = 滑条拉满。不传 = 官方默认                                                                  |
| **Duration** Custom          | `controls.duration`             | 秒 **10\~360**。Auto = 不传。**chirp-v55 / chirp-v6+**；旧模型 / `chirp-custom:*` 忽略                                          |
| **Audio influence**（翻唱 / 延长） | `controls.audio_weight`         | 0\~1                                                                                                                 |

<Warning>
  `max_mode: true` 会按平台规则把用户计费翻倍。不要随手打开。
</Warning>

## 示例

```bash theme={null}
curl -X POST https://api.mountsea.ai/suno/v2/generate \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer your-api-key" \
  -d '{
    "task": "create",
    "model": "chirp-v6",
    "prompt": "[Verse]\nHello world...",
    "tags": "Pop, Happy",
    "negative_tags": "Sad, Slow",
    "vocal_gender": "f",
    "max_mode": false,
    "use_personalization": false,
    "controls": {
      "style_weight": 0.29,
      "weirdness_constraint": 0.37,
      "aug_creativity": 2,
      "duration": 110
    }
  }'
```
