> ## 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 Options

> Official Create form → API fields. Omit them to keep previous behavior and pricing.

# Create Options

Official suno.com **Create → More Options** mapped to `/suno/v2/generate`. **All of these are optional.** Omit them and behavior / pricing stay as before.

Use with [Generate Music](/api-reference/suno/generate). Check fields per task via [Generate Schema](/api-reference/suno/generateSchema).

## Official UI → API

| Official Create                      | API field                       | Notes                                                                                                                                                                                             |
| ------------------------------------ | ------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| **Max Mode**                         | `max_mode`                      | `true` = more compute, more consistent song. **2× official credits**; platform bills **2×** when `max_mode=true`. Default omit / `false` = current price. **Ignored** on `gen_stem_*` and `sound` |
| **Personalize / My Taste**           | `use_personalization`           | Uses the picked official account’s taste profile. Effect is **not guaranteed** (pool accounts may have no taste data). Default omit / `false`                                                     |
| **Vocal Gender**                     | `vocal_gender`                  | `m` / `f`. Omit = no preference                                                                                                                                                                   |
| **Exclude styles**                   | `negative_tags`                 | string or string\[]                                                                                                                                                                               |
| **Style Influence**                  | `controls.style_weight`         | 0\~1                                                                                                                                                                                              |
| **Weirdness**                        | `controls.weirdness_constraint` | 0\~1; higher = more experimental                                                                                                                                                                  |
| **Variety**                          | `controls.aug_creativity`       | Integer **0\~4**. `2` = Normal (suno.com default), `4` = slider max. Omit = official default                                                                                                      |
| **Duration** Custom                  | `controls.duration`             | Seconds **10\~360**. Auto = omit. **chirp-v55 / chirp-v6+**; older / `chirp-custom:*` ignore it                                                                                                   |
| **Audio influence** (cover / extend) | `controls.audio_weight`         | 0\~1                                                                                                                                                                                              |

<Warning>
  `max_mode: true` doubles user billing via a platform cost rule. Do not send it unless you intend the extra cost.
</Warning>

## Example

```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
    }
  }'
```
