@runapi.ai/suno-mcp 0.1.5 → 0.1.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/data/contract.json +1067 -1049
- package/dist/src/meta.d.ts +1 -1
- package/dist/src/meta.js +1 -1
- package/package.json +2 -2
- package/server.json +2 -2
package/data/contract.json
CHANGED
|
@@ -62,30 +62,34 @@
|
|
|
62
62
|
],
|
|
63
63
|
"fields_by_model": {
|
|
64
64
|
"suno-v4": {
|
|
65
|
+
"callback_url": {
|
|
66
|
+
"type": "string",
|
|
67
|
+
"description": "Webhook URL for async notifications."
|
|
68
|
+
},
|
|
65
69
|
"model": {
|
|
66
70
|
"type": "string",
|
|
67
71
|
"required": true,
|
|
68
72
|
"description": "Model slug."
|
|
69
73
|
},
|
|
70
|
-
"
|
|
71
|
-
"type": "string",
|
|
72
|
-
"description": "Music style."
|
|
73
|
-
},
|
|
74
|
-
"title": {
|
|
74
|
+
"vocal_gender": {
|
|
75
75
|
"type": "string",
|
|
76
|
-
"
|
|
76
|
+
"enum": [
|
|
77
|
+
"male",
|
|
78
|
+
"female"
|
|
79
|
+
],
|
|
80
|
+
"description": "Vocal gender."
|
|
77
81
|
},
|
|
78
|
-
"
|
|
79
|
-
"type": "
|
|
80
|
-
"description": "
|
|
82
|
+
"style_weight": {
|
|
83
|
+
"type": "number",
|
|
84
|
+
"description": "Style adherence weight (0-1)."
|
|
81
85
|
},
|
|
82
|
-
"
|
|
83
|
-
"type": "
|
|
84
|
-
"description": "
|
|
86
|
+
"weirdness_constraint": {
|
|
87
|
+
"type": "number",
|
|
88
|
+
"description": "Weirdness constraint (0-1)."
|
|
85
89
|
},
|
|
86
|
-
"
|
|
87
|
-
"type": "
|
|
88
|
-
"description": "
|
|
90
|
+
"audio_weight": {
|
|
91
|
+
"type": "number",
|
|
92
|
+
"description": "Audio weight (0-1)."
|
|
89
93
|
},
|
|
90
94
|
"upload_url": {
|
|
91
95
|
"type": "string",
|
|
@@ -93,77 +97,77 @@
|
|
|
93
97
|
"description": "URL of the audio file to cover."
|
|
94
98
|
},
|
|
95
99
|
"vocal_mode": {
|
|
100
|
+
"type": "string",
|
|
96
101
|
"enum": [
|
|
97
102
|
"auto_lyrics",
|
|
98
103
|
"exact_lyrics",
|
|
99
104
|
"instrumental"
|
|
100
105
|
],
|
|
101
|
-
"type": "string",
|
|
102
106
|
"required": true,
|
|
103
107
|
"description": "Vocal generation mode."
|
|
104
108
|
},
|
|
105
|
-
"
|
|
106
|
-
"type": "
|
|
107
|
-
"description": "
|
|
109
|
+
"prompt": {
|
|
110
|
+
"type": "string",
|
|
111
|
+
"description": "Cover brief for automatic lyrics."
|
|
108
112
|
},
|
|
109
|
-
"
|
|
113
|
+
"lyrics": {
|
|
110
114
|
"type": "string",
|
|
111
|
-
"description": "
|
|
115
|
+
"description": "Exact cover lyrics to sing."
|
|
116
|
+
},
|
|
117
|
+
"style": {
|
|
118
|
+
"type": "string",
|
|
119
|
+
"description": "Music style."
|
|
120
|
+
},
|
|
121
|
+
"title": {
|
|
122
|
+
"type": "string",
|
|
123
|
+
"description": "Music title."
|
|
124
|
+
},
|
|
125
|
+
"persona_id": {
|
|
126
|
+
"type": "string",
|
|
127
|
+
"description": "Persona ID."
|
|
112
128
|
},
|
|
113
129
|
"persona_type": {
|
|
130
|
+
"type": "string",
|
|
114
131
|
"enum": [
|
|
115
132
|
"style",
|
|
116
133
|
"voice"
|
|
117
134
|
],
|
|
118
|
-
"type": "string",
|
|
119
135
|
"description": "Persona type."
|
|
120
136
|
},
|
|
121
|
-
"style_weight": {
|
|
122
|
-
"type": "number",
|
|
123
|
-
"description": "Style adherence weight (0-1)."
|
|
124
|
-
},
|
|
125
|
-
"vocal_gender": {
|
|
126
|
-
"enum": [
|
|
127
|
-
"male",
|
|
128
|
-
"female"
|
|
129
|
-
],
|
|
130
|
-
"type": "string",
|
|
131
|
-
"description": "Vocal gender."
|
|
132
|
-
},
|
|
133
137
|
"negative_tags": {
|
|
134
138
|
"type": "string",
|
|
135
139
|
"description": "Styles to avoid."
|
|
136
|
-
},
|
|
137
|
-
"weirdness_constraint": {
|
|
138
|
-
"type": "number",
|
|
139
|
-
"description": "Weirdness constraint (0-1)."
|
|
140
140
|
}
|
|
141
141
|
},
|
|
142
142
|
"suno-v4.5": {
|
|
143
|
+
"callback_url": {
|
|
144
|
+
"type": "string",
|
|
145
|
+
"description": "Webhook URL for async notifications."
|
|
146
|
+
},
|
|
143
147
|
"model": {
|
|
144
148
|
"type": "string",
|
|
145
149
|
"required": true,
|
|
146
150
|
"description": "Model slug."
|
|
147
151
|
},
|
|
148
|
-
"
|
|
149
|
-
"type": "string",
|
|
150
|
-
"description": "Music style."
|
|
151
|
-
},
|
|
152
|
-
"title": {
|
|
152
|
+
"vocal_gender": {
|
|
153
153
|
"type": "string",
|
|
154
|
-
"
|
|
154
|
+
"enum": [
|
|
155
|
+
"male",
|
|
156
|
+
"female"
|
|
157
|
+
],
|
|
158
|
+
"description": "Vocal gender."
|
|
155
159
|
},
|
|
156
|
-
"
|
|
157
|
-
"type": "
|
|
158
|
-
"description": "
|
|
160
|
+
"style_weight": {
|
|
161
|
+
"type": "number",
|
|
162
|
+
"description": "Style adherence weight (0-1)."
|
|
159
163
|
},
|
|
160
|
-
"
|
|
161
|
-
"type": "
|
|
162
|
-
"description": "
|
|
164
|
+
"weirdness_constraint": {
|
|
165
|
+
"type": "number",
|
|
166
|
+
"description": "Weirdness constraint (0-1)."
|
|
163
167
|
},
|
|
164
|
-
"
|
|
165
|
-
"type": "
|
|
166
|
-
"description": "
|
|
168
|
+
"audio_weight": {
|
|
169
|
+
"type": "number",
|
|
170
|
+
"description": "Audio weight (0-1)."
|
|
167
171
|
},
|
|
168
172
|
"upload_url": {
|
|
169
173
|
"type": "string",
|
|
@@ -171,77 +175,77 @@
|
|
|
171
175
|
"description": "URL of the audio file to cover."
|
|
172
176
|
},
|
|
173
177
|
"vocal_mode": {
|
|
178
|
+
"type": "string",
|
|
174
179
|
"enum": [
|
|
175
180
|
"auto_lyrics",
|
|
176
181
|
"exact_lyrics",
|
|
177
182
|
"instrumental"
|
|
178
183
|
],
|
|
179
|
-
"type": "string",
|
|
180
184
|
"required": true,
|
|
181
185
|
"description": "Vocal generation mode."
|
|
182
186
|
},
|
|
183
|
-
"
|
|
184
|
-
"type": "
|
|
185
|
-
"description": "
|
|
187
|
+
"prompt": {
|
|
188
|
+
"type": "string",
|
|
189
|
+
"description": "Cover brief for automatic lyrics."
|
|
186
190
|
},
|
|
187
|
-
"
|
|
191
|
+
"lyrics": {
|
|
188
192
|
"type": "string",
|
|
189
|
-
"description": "
|
|
193
|
+
"description": "Exact cover lyrics to sing."
|
|
194
|
+
},
|
|
195
|
+
"style": {
|
|
196
|
+
"type": "string",
|
|
197
|
+
"description": "Music style."
|
|
198
|
+
},
|
|
199
|
+
"title": {
|
|
200
|
+
"type": "string",
|
|
201
|
+
"description": "Music title."
|
|
202
|
+
},
|
|
203
|
+
"persona_id": {
|
|
204
|
+
"type": "string",
|
|
205
|
+
"description": "Persona ID."
|
|
190
206
|
},
|
|
191
207
|
"persona_type": {
|
|
208
|
+
"type": "string",
|
|
192
209
|
"enum": [
|
|
193
210
|
"style",
|
|
194
211
|
"voice"
|
|
195
212
|
],
|
|
196
|
-
"type": "string",
|
|
197
213
|
"description": "Persona type."
|
|
198
214
|
},
|
|
199
|
-
"style_weight": {
|
|
200
|
-
"type": "number",
|
|
201
|
-
"description": "Style adherence weight (0-1)."
|
|
202
|
-
},
|
|
203
|
-
"vocal_gender": {
|
|
204
|
-
"enum": [
|
|
205
|
-
"male",
|
|
206
|
-
"female"
|
|
207
|
-
],
|
|
208
|
-
"type": "string",
|
|
209
|
-
"description": "Vocal gender."
|
|
210
|
-
},
|
|
211
215
|
"negative_tags": {
|
|
212
216
|
"type": "string",
|
|
213
217
|
"description": "Styles to avoid."
|
|
214
|
-
},
|
|
215
|
-
"weirdness_constraint": {
|
|
216
|
-
"type": "number",
|
|
217
|
-
"description": "Weirdness constraint (0-1)."
|
|
218
218
|
}
|
|
219
219
|
},
|
|
220
220
|
"suno-v4.5-all": {
|
|
221
|
+
"callback_url": {
|
|
222
|
+
"type": "string",
|
|
223
|
+
"description": "Webhook URL for async notifications."
|
|
224
|
+
},
|
|
221
225
|
"model": {
|
|
222
226
|
"type": "string",
|
|
223
227
|
"required": true,
|
|
224
228
|
"description": "Model slug."
|
|
225
229
|
},
|
|
226
|
-
"
|
|
227
|
-
"type": "string",
|
|
228
|
-
"description": "Music style."
|
|
229
|
-
},
|
|
230
|
-
"title": {
|
|
230
|
+
"vocal_gender": {
|
|
231
231
|
"type": "string",
|
|
232
|
-
"
|
|
232
|
+
"enum": [
|
|
233
|
+
"male",
|
|
234
|
+
"female"
|
|
235
|
+
],
|
|
236
|
+
"description": "Vocal gender."
|
|
233
237
|
},
|
|
234
|
-
"
|
|
235
|
-
"type": "
|
|
236
|
-
"description": "
|
|
238
|
+
"style_weight": {
|
|
239
|
+
"type": "number",
|
|
240
|
+
"description": "Style adherence weight (0-1)."
|
|
237
241
|
},
|
|
238
|
-
"
|
|
239
|
-
"type": "
|
|
240
|
-
"description": "
|
|
242
|
+
"weirdness_constraint": {
|
|
243
|
+
"type": "number",
|
|
244
|
+
"description": "Weirdness constraint (0-1)."
|
|
241
245
|
},
|
|
242
|
-
"
|
|
243
|
-
"type": "
|
|
244
|
-
"description": "
|
|
246
|
+
"audio_weight": {
|
|
247
|
+
"type": "number",
|
|
248
|
+
"description": "Audio weight (0-1)."
|
|
245
249
|
},
|
|
246
250
|
"upload_url": {
|
|
247
251
|
"type": "string",
|
|
@@ -249,155 +253,155 @@
|
|
|
249
253
|
"description": "URL of the audio file to cover."
|
|
250
254
|
},
|
|
251
255
|
"vocal_mode": {
|
|
256
|
+
"type": "string",
|
|
252
257
|
"enum": [
|
|
253
258
|
"auto_lyrics",
|
|
254
259
|
"exact_lyrics",
|
|
255
260
|
"instrumental"
|
|
256
261
|
],
|
|
257
|
-
"type": "string",
|
|
258
262
|
"required": true,
|
|
259
263
|
"description": "Vocal generation mode."
|
|
260
264
|
},
|
|
261
|
-
"
|
|
262
|
-
"type": "
|
|
263
|
-
"description": "
|
|
265
|
+
"prompt": {
|
|
266
|
+
"type": "string",
|
|
267
|
+
"description": "Cover brief for automatic lyrics."
|
|
264
268
|
},
|
|
265
|
-
"
|
|
269
|
+
"lyrics": {
|
|
266
270
|
"type": "string",
|
|
267
|
-
"description": "
|
|
271
|
+
"description": "Exact cover lyrics to sing."
|
|
272
|
+
},
|
|
273
|
+
"style": {
|
|
274
|
+
"type": "string",
|
|
275
|
+
"description": "Music style."
|
|
276
|
+
},
|
|
277
|
+
"title": {
|
|
278
|
+
"type": "string",
|
|
279
|
+
"description": "Music title."
|
|
280
|
+
},
|
|
281
|
+
"persona_id": {
|
|
282
|
+
"type": "string",
|
|
283
|
+
"description": "Persona ID."
|
|
268
284
|
},
|
|
269
285
|
"persona_type": {
|
|
286
|
+
"type": "string",
|
|
270
287
|
"enum": [
|
|
271
288
|
"style",
|
|
272
289
|
"voice"
|
|
273
290
|
],
|
|
274
|
-
"type": "string",
|
|
275
291
|
"description": "Persona type."
|
|
276
292
|
},
|
|
277
|
-
"
|
|
278
|
-
"type": "
|
|
279
|
-
"description": "
|
|
293
|
+
"negative_tags": {
|
|
294
|
+
"type": "string",
|
|
295
|
+
"description": "Styles to avoid."
|
|
296
|
+
}
|
|
297
|
+
},
|
|
298
|
+
"suno-v4.5-plus": {
|
|
299
|
+
"callback_url": {
|
|
300
|
+
"type": "string",
|
|
301
|
+
"description": "Webhook URL for async notifications."
|
|
302
|
+
},
|
|
303
|
+
"model": {
|
|
304
|
+
"type": "string",
|
|
305
|
+
"required": true,
|
|
306
|
+
"description": "Model slug."
|
|
280
307
|
},
|
|
281
308
|
"vocal_gender": {
|
|
309
|
+
"type": "string",
|
|
282
310
|
"enum": [
|
|
283
311
|
"male",
|
|
284
312
|
"female"
|
|
285
313
|
],
|
|
286
|
-
"type": "string",
|
|
287
314
|
"description": "Vocal gender."
|
|
288
315
|
},
|
|
289
|
-
"
|
|
290
|
-
"type": "
|
|
291
|
-
"description": "
|
|
316
|
+
"style_weight": {
|
|
317
|
+
"type": "number",
|
|
318
|
+
"description": "Style adherence weight (0-1)."
|
|
292
319
|
},
|
|
293
320
|
"weirdness_constraint": {
|
|
294
321
|
"type": "number",
|
|
295
322
|
"description": "Weirdness constraint (0-1)."
|
|
296
|
-
}
|
|
297
|
-
},
|
|
298
|
-
"suno-v4.5-plus": {
|
|
299
|
-
"model": {
|
|
300
|
-
"type": "string",
|
|
301
|
-
"required": true,
|
|
302
|
-
"description": "Model slug."
|
|
303
323
|
},
|
|
304
|
-
"
|
|
305
|
-
"type": "
|
|
306
|
-
"description": "
|
|
324
|
+
"audio_weight": {
|
|
325
|
+
"type": "number",
|
|
326
|
+
"description": "Audio weight (0-1)."
|
|
307
327
|
},
|
|
308
|
-
"
|
|
328
|
+
"upload_url": {
|
|
309
329
|
"type": "string",
|
|
310
|
-
"
|
|
330
|
+
"required": true,
|
|
331
|
+
"description": "URL of the audio file to cover."
|
|
311
332
|
},
|
|
312
|
-
"
|
|
333
|
+
"vocal_mode": {
|
|
313
334
|
"type": "string",
|
|
314
|
-
"
|
|
335
|
+
"enum": [
|
|
336
|
+
"auto_lyrics",
|
|
337
|
+
"exact_lyrics",
|
|
338
|
+
"instrumental"
|
|
339
|
+
],
|
|
340
|
+
"required": true,
|
|
341
|
+
"description": "Vocal generation mode."
|
|
315
342
|
},
|
|
316
343
|
"prompt": {
|
|
317
344
|
"type": "string",
|
|
318
345
|
"description": "Cover brief for automatic lyrics."
|
|
319
346
|
},
|
|
320
|
-
"
|
|
347
|
+
"lyrics": {
|
|
321
348
|
"type": "string",
|
|
322
|
-
"description": "
|
|
349
|
+
"description": "Exact cover lyrics to sing."
|
|
323
350
|
},
|
|
324
|
-
"
|
|
351
|
+
"style": {
|
|
325
352
|
"type": "string",
|
|
326
|
-
"
|
|
327
|
-
"description": "URL of the audio file to cover."
|
|
353
|
+
"description": "Music style."
|
|
328
354
|
},
|
|
329
|
-
"
|
|
330
|
-
"enum": [
|
|
331
|
-
"auto_lyrics",
|
|
332
|
-
"exact_lyrics",
|
|
333
|
-
"instrumental"
|
|
334
|
-
],
|
|
355
|
+
"title": {
|
|
335
356
|
"type": "string",
|
|
336
|
-
"
|
|
337
|
-
"description": "Vocal generation mode."
|
|
338
|
-
},
|
|
339
|
-
"audio_weight": {
|
|
340
|
-
"type": "number",
|
|
341
|
-
"description": "Audio weight (0-1)."
|
|
357
|
+
"description": "Music title."
|
|
342
358
|
},
|
|
343
|
-
"
|
|
359
|
+
"persona_id": {
|
|
344
360
|
"type": "string",
|
|
345
|
-
"description": "
|
|
361
|
+
"description": "Persona ID."
|
|
346
362
|
},
|
|
347
363
|
"persona_type": {
|
|
364
|
+
"type": "string",
|
|
348
365
|
"enum": [
|
|
349
366
|
"style",
|
|
350
367
|
"voice"
|
|
351
368
|
],
|
|
352
|
-
"type": "string",
|
|
353
369
|
"description": "Persona type."
|
|
354
370
|
},
|
|
355
|
-
"style_weight": {
|
|
356
|
-
"type": "number",
|
|
357
|
-
"description": "Style adherence weight (0-1)."
|
|
358
|
-
},
|
|
359
|
-
"vocal_gender": {
|
|
360
|
-
"enum": [
|
|
361
|
-
"male",
|
|
362
|
-
"female"
|
|
363
|
-
],
|
|
364
|
-
"type": "string",
|
|
365
|
-
"description": "Vocal gender."
|
|
366
|
-
},
|
|
367
371
|
"negative_tags": {
|
|
368
372
|
"type": "string",
|
|
369
373
|
"description": "Styles to avoid."
|
|
370
|
-
},
|
|
371
|
-
"weirdness_constraint": {
|
|
372
|
-
"type": "number",
|
|
373
|
-
"description": "Weirdness constraint (0-1)."
|
|
374
374
|
}
|
|
375
375
|
},
|
|
376
376
|
"suno-v5": {
|
|
377
|
+
"callback_url": {
|
|
378
|
+
"type": "string",
|
|
379
|
+
"description": "Webhook URL for async notifications."
|
|
380
|
+
},
|
|
377
381
|
"model": {
|
|
378
382
|
"type": "string",
|
|
379
383
|
"required": true,
|
|
380
384
|
"description": "Model slug."
|
|
381
385
|
},
|
|
382
|
-
"
|
|
383
|
-
"type": "string",
|
|
384
|
-
"description": "Music style."
|
|
385
|
-
},
|
|
386
|
-
"title": {
|
|
386
|
+
"vocal_gender": {
|
|
387
387
|
"type": "string",
|
|
388
|
-
"
|
|
388
|
+
"enum": [
|
|
389
|
+
"male",
|
|
390
|
+
"female"
|
|
391
|
+
],
|
|
392
|
+
"description": "Vocal gender."
|
|
389
393
|
},
|
|
390
|
-
"
|
|
391
|
-
"type": "
|
|
392
|
-
"description": "
|
|
394
|
+
"style_weight": {
|
|
395
|
+
"type": "number",
|
|
396
|
+
"description": "Style adherence weight (0-1)."
|
|
393
397
|
},
|
|
394
|
-
"
|
|
395
|
-
"type": "
|
|
396
|
-
"description": "
|
|
398
|
+
"weirdness_constraint": {
|
|
399
|
+
"type": "number",
|
|
400
|
+
"description": "Weirdness constraint (0-1)."
|
|
397
401
|
},
|
|
398
|
-
"
|
|
399
|
-
"type": "
|
|
400
|
-
"description": "
|
|
402
|
+
"audio_weight": {
|
|
403
|
+
"type": "number",
|
|
404
|
+
"description": "Audio weight (0-1)."
|
|
401
405
|
},
|
|
402
406
|
"upload_url": {
|
|
403
407
|
"type": "string",
|
|
@@ -405,77 +409,77 @@
|
|
|
405
409
|
"description": "URL of the audio file to cover."
|
|
406
410
|
},
|
|
407
411
|
"vocal_mode": {
|
|
412
|
+
"type": "string",
|
|
408
413
|
"enum": [
|
|
409
414
|
"auto_lyrics",
|
|
410
415
|
"exact_lyrics",
|
|
411
416
|
"instrumental"
|
|
412
417
|
],
|
|
413
|
-
"type": "string",
|
|
414
418
|
"required": true,
|
|
415
419
|
"description": "Vocal generation mode."
|
|
416
420
|
},
|
|
417
|
-
"
|
|
418
|
-
"type": "
|
|
419
|
-
"description": "
|
|
421
|
+
"prompt": {
|
|
422
|
+
"type": "string",
|
|
423
|
+
"description": "Cover brief for automatic lyrics."
|
|
420
424
|
},
|
|
421
|
-
"
|
|
425
|
+
"lyrics": {
|
|
422
426
|
"type": "string",
|
|
423
|
-
"description": "
|
|
427
|
+
"description": "Exact cover lyrics to sing."
|
|
428
|
+
},
|
|
429
|
+
"style": {
|
|
430
|
+
"type": "string",
|
|
431
|
+
"description": "Music style."
|
|
432
|
+
},
|
|
433
|
+
"title": {
|
|
434
|
+
"type": "string",
|
|
435
|
+
"description": "Music title."
|
|
436
|
+
},
|
|
437
|
+
"persona_id": {
|
|
438
|
+
"type": "string",
|
|
439
|
+
"description": "Persona ID."
|
|
424
440
|
},
|
|
425
441
|
"persona_type": {
|
|
442
|
+
"type": "string",
|
|
426
443
|
"enum": [
|
|
427
444
|
"style",
|
|
428
445
|
"voice"
|
|
429
446
|
],
|
|
430
|
-
"type": "string",
|
|
431
447
|
"description": "Persona type."
|
|
432
448
|
},
|
|
433
|
-
"style_weight": {
|
|
434
|
-
"type": "number",
|
|
435
|
-
"description": "Style adherence weight (0-1)."
|
|
436
|
-
},
|
|
437
|
-
"vocal_gender": {
|
|
438
|
-
"enum": [
|
|
439
|
-
"male",
|
|
440
|
-
"female"
|
|
441
|
-
],
|
|
442
|
-
"type": "string",
|
|
443
|
-
"description": "Vocal gender."
|
|
444
|
-
},
|
|
445
449
|
"negative_tags": {
|
|
446
450
|
"type": "string",
|
|
447
451
|
"description": "Styles to avoid."
|
|
448
|
-
},
|
|
449
|
-
"weirdness_constraint": {
|
|
450
|
-
"type": "number",
|
|
451
|
-
"description": "Weirdness constraint (0-1)."
|
|
452
452
|
}
|
|
453
453
|
},
|
|
454
454
|
"suno-v5.5": {
|
|
455
|
+
"callback_url": {
|
|
456
|
+
"type": "string",
|
|
457
|
+
"description": "Webhook URL for async notifications."
|
|
458
|
+
},
|
|
455
459
|
"model": {
|
|
456
460
|
"type": "string",
|
|
457
461
|
"required": true,
|
|
458
462
|
"description": "Model slug."
|
|
459
463
|
},
|
|
460
|
-
"
|
|
461
|
-
"type": "string",
|
|
462
|
-
"description": "Music style."
|
|
463
|
-
},
|
|
464
|
-
"title": {
|
|
464
|
+
"vocal_gender": {
|
|
465
465
|
"type": "string",
|
|
466
|
-
"
|
|
466
|
+
"enum": [
|
|
467
|
+
"male",
|
|
468
|
+
"female"
|
|
469
|
+
],
|
|
470
|
+
"description": "Vocal gender."
|
|
467
471
|
},
|
|
468
|
-
"
|
|
469
|
-
"type": "
|
|
470
|
-
"description": "
|
|
472
|
+
"style_weight": {
|
|
473
|
+
"type": "number",
|
|
474
|
+
"description": "Style adherence weight (0-1)."
|
|
471
475
|
},
|
|
472
|
-
"
|
|
473
|
-
"type": "
|
|
474
|
-
"description": "
|
|
476
|
+
"weirdness_constraint": {
|
|
477
|
+
"type": "number",
|
|
478
|
+
"description": "Weirdness constraint (0-1)."
|
|
475
479
|
},
|
|
476
|
-
"
|
|
477
|
-
"type": "
|
|
478
|
-
"description": "
|
|
480
|
+
"audio_weight": {
|
|
481
|
+
"type": "number",
|
|
482
|
+
"description": "Audio weight (0-1)."
|
|
479
483
|
},
|
|
480
484
|
"upload_url": {
|
|
481
485
|
"type": "string",
|
|
@@ -483,50 +487,46 @@
|
|
|
483
487
|
"description": "URL of the audio file to cover."
|
|
484
488
|
},
|
|
485
489
|
"vocal_mode": {
|
|
490
|
+
"type": "string",
|
|
486
491
|
"enum": [
|
|
487
492
|
"auto_lyrics",
|
|
488
493
|
"exact_lyrics",
|
|
489
494
|
"instrumental"
|
|
490
495
|
],
|
|
491
|
-
"type": "string",
|
|
492
496
|
"required": true,
|
|
493
497
|
"description": "Vocal generation mode."
|
|
494
498
|
},
|
|
495
|
-
"
|
|
496
|
-
"type": "
|
|
497
|
-
"description": "
|
|
499
|
+
"prompt": {
|
|
500
|
+
"type": "string",
|
|
501
|
+
"description": "Cover brief for automatic lyrics."
|
|
498
502
|
},
|
|
499
|
-
"
|
|
503
|
+
"lyrics": {
|
|
500
504
|
"type": "string",
|
|
501
|
-
"description": "
|
|
505
|
+
"description": "Exact cover lyrics to sing."
|
|
506
|
+
},
|
|
507
|
+
"style": {
|
|
508
|
+
"type": "string",
|
|
509
|
+
"description": "Music style."
|
|
510
|
+
},
|
|
511
|
+
"title": {
|
|
512
|
+
"type": "string",
|
|
513
|
+
"description": "Music title."
|
|
514
|
+
},
|
|
515
|
+
"persona_id": {
|
|
516
|
+
"type": "string",
|
|
517
|
+
"description": "Persona ID."
|
|
502
518
|
},
|
|
503
519
|
"persona_type": {
|
|
520
|
+
"type": "string",
|
|
504
521
|
"enum": [
|
|
505
522
|
"style",
|
|
506
523
|
"voice"
|
|
507
524
|
],
|
|
508
|
-
"type": "string",
|
|
509
525
|
"description": "Persona type."
|
|
510
526
|
},
|
|
511
|
-
"style_weight": {
|
|
512
|
-
"type": "number",
|
|
513
|
-
"description": "Style adherence weight (0-1)."
|
|
514
|
-
},
|
|
515
|
-
"vocal_gender": {
|
|
516
|
-
"enum": [
|
|
517
|
-
"male",
|
|
518
|
-
"female"
|
|
519
|
-
],
|
|
520
|
-
"type": "string",
|
|
521
|
-
"description": "Vocal gender."
|
|
522
|
-
},
|
|
523
527
|
"negative_tags": {
|
|
524
528
|
"type": "string",
|
|
525
529
|
"description": "Styles to avoid."
|
|
526
|
-
},
|
|
527
|
-
"weirdness_constraint": {
|
|
528
|
-
"type": "number",
|
|
529
|
-
"description": "Weirdness constraint (0-1)."
|
|
530
530
|
}
|
|
531
531
|
}
|
|
532
532
|
}
|
|
@@ -585,447 +585,447 @@
|
|
|
585
585
|
],
|
|
586
586
|
"fields_by_model": {
|
|
587
587
|
"suno-v4": {
|
|
588
|
+
"callback_url": {
|
|
589
|
+
"type": "string",
|
|
590
|
+
"description": "Webhook URL for async notifications."
|
|
591
|
+
},
|
|
588
592
|
"model": {
|
|
589
593
|
"type": "string",
|
|
590
594
|
"required": true,
|
|
591
595
|
"description": "Model slug."
|
|
592
596
|
},
|
|
593
|
-
"
|
|
597
|
+
"vocal_gender": {
|
|
594
598
|
"type": "string",
|
|
595
|
-
"
|
|
599
|
+
"enum": [
|
|
600
|
+
"male",
|
|
601
|
+
"female"
|
|
602
|
+
],
|
|
603
|
+
"description": "Vocal gender."
|
|
596
604
|
},
|
|
597
|
-
"
|
|
598
|
-
"type": "
|
|
599
|
-
"description": "
|
|
605
|
+
"style_weight": {
|
|
606
|
+
"type": "number",
|
|
607
|
+
"description": "Style adherence weight (0-1)."
|
|
600
608
|
},
|
|
601
|
-
"
|
|
602
|
-
"type": "
|
|
603
|
-
"description": "
|
|
609
|
+
"weirdness_constraint": {
|
|
610
|
+
"type": "number",
|
|
611
|
+
"description": "Weirdness constraint (0-1)."
|
|
604
612
|
},
|
|
605
|
-
"
|
|
606
|
-
"type": "
|
|
607
|
-
"description": "
|
|
613
|
+
"audio_weight": {
|
|
614
|
+
"type": "number",
|
|
615
|
+
"description": "Audio weight (0-1)."
|
|
608
616
|
},
|
|
609
|
-
"
|
|
610
|
-
"type": "
|
|
611
|
-
"
|
|
617
|
+
"upload_url_list": {
|
|
618
|
+
"type": "array",
|
|
619
|
+
"required": true,
|
|
620
|
+
"description": "Two audio URLs to mashup."
|
|
612
621
|
},
|
|
613
622
|
"vocal_mode": {
|
|
623
|
+
"type": "string",
|
|
614
624
|
"enum": [
|
|
615
625
|
"auto_lyrics",
|
|
616
626
|
"exact_lyrics",
|
|
617
627
|
"instrumental"
|
|
618
628
|
],
|
|
619
|
-
"type": "string",
|
|
620
629
|
"required": true,
|
|
621
630
|
"description": "Vocal generation mode."
|
|
622
631
|
},
|
|
623
|
-
"
|
|
624
|
-
"type": "
|
|
625
|
-
"description": "
|
|
632
|
+
"prompt": {
|
|
633
|
+
"type": "string",
|
|
634
|
+
"description": "Mashup brief for automatic lyrics."
|
|
626
635
|
},
|
|
627
|
-
"
|
|
636
|
+
"lyrics": {
|
|
628
637
|
"type": "string",
|
|
629
|
-
"description": "
|
|
638
|
+
"description": "Exact mashup lyrics to sing."
|
|
630
639
|
},
|
|
631
|
-
"
|
|
640
|
+
"style": {
|
|
641
|
+
"type": "string",
|
|
642
|
+
"description": "Music style."
|
|
643
|
+
},
|
|
644
|
+
"title": {
|
|
645
|
+
"type": "string",
|
|
646
|
+
"description": "Music title."
|
|
647
|
+
},
|
|
648
|
+
"persona_id": {
|
|
649
|
+
"type": "string",
|
|
650
|
+
"description": "Persona ID."
|
|
651
|
+
},
|
|
652
|
+
"persona_type": {
|
|
653
|
+
"type": "string",
|
|
632
654
|
"enum": [
|
|
633
655
|
"style",
|
|
634
656
|
"voice"
|
|
635
657
|
],
|
|
636
|
-
"type": "string",
|
|
637
658
|
"description": "Persona type."
|
|
659
|
+
}
|
|
660
|
+
},
|
|
661
|
+
"suno-v4.5": {
|
|
662
|
+
"callback_url": {
|
|
663
|
+
"type": "string",
|
|
664
|
+
"description": "Webhook URL for async notifications."
|
|
638
665
|
},
|
|
639
|
-
"
|
|
640
|
-
"type": "
|
|
641
|
-
"
|
|
666
|
+
"model": {
|
|
667
|
+
"type": "string",
|
|
668
|
+
"required": true,
|
|
669
|
+
"description": "Model slug."
|
|
642
670
|
},
|
|
643
671
|
"vocal_gender": {
|
|
672
|
+
"type": "string",
|
|
644
673
|
"enum": [
|
|
645
674
|
"male",
|
|
646
675
|
"female"
|
|
647
676
|
],
|
|
648
|
-
"type": "string",
|
|
649
677
|
"description": "Vocal gender."
|
|
650
678
|
},
|
|
651
|
-
"
|
|
652
|
-
"type": "
|
|
653
|
-
"
|
|
654
|
-
"description": "Two audio URLs to mashup."
|
|
679
|
+
"style_weight": {
|
|
680
|
+
"type": "number",
|
|
681
|
+
"description": "Style adherence weight (0-1)."
|
|
655
682
|
},
|
|
656
683
|
"weirdness_constraint": {
|
|
657
684
|
"type": "number",
|
|
658
685
|
"description": "Weirdness constraint (0-1)."
|
|
659
|
-
}
|
|
660
|
-
},
|
|
661
|
-
"suno-v4.5": {
|
|
662
|
-
"model": {
|
|
663
|
-
"type": "string",
|
|
664
|
-
"required": true,
|
|
665
|
-
"description": "Model slug."
|
|
666
686
|
},
|
|
667
|
-
"
|
|
668
|
-
"type": "
|
|
669
|
-
"description": "
|
|
687
|
+
"audio_weight": {
|
|
688
|
+
"type": "number",
|
|
689
|
+
"description": "Audio weight (0-1)."
|
|
670
690
|
},
|
|
671
|
-
"
|
|
672
|
-
"type": "
|
|
673
|
-
"
|
|
691
|
+
"upload_url_list": {
|
|
692
|
+
"type": "array",
|
|
693
|
+
"required": true,
|
|
694
|
+
"description": "Two audio URLs to mashup."
|
|
674
695
|
},
|
|
675
|
-
"
|
|
696
|
+
"vocal_mode": {
|
|
676
697
|
"type": "string",
|
|
677
|
-
"
|
|
698
|
+
"enum": [
|
|
699
|
+
"auto_lyrics",
|
|
700
|
+
"exact_lyrics",
|
|
701
|
+
"instrumental"
|
|
702
|
+
],
|
|
703
|
+
"required": true,
|
|
704
|
+
"description": "Vocal generation mode."
|
|
678
705
|
},
|
|
679
706
|
"prompt": {
|
|
680
707
|
"type": "string",
|
|
681
708
|
"description": "Mashup brief for automatic lyrics."
|
|
682
709
|
},
|
|
683
|
-
"
|
|
710
|
+
"lyrics": {
|
|
684
711
|
"type": "string",
|
|
685
|
-
"description": "
|
|
712
|
+
"description": "Exact mashup lyrics to sing."
|
|
686
713
|
},
|
|
687
|
-
"
|
|
688
|
-
"enum": [
|
|
689
|
-
"auto_lyrics",
|
|
690
|
-
"exact_lyrics",
|
|
691
|
-
"instrumental"
|
|
692
|
-
],
|
|
714
|
+
"style": {
|
|
693
715
|
"type": "string",
|
|
694
|
-
"
|
|
695
|
-
"description": "Vocal generation mode."
|
|
716
|
+
"description": "Music style."
|
|
696
717
|
},
|
|
697
|
-
"
|
|
698
|
-
"type": "
|
|
699
|
-
"description": "
|
|
718
|
+
"title": {
|
|
719
|
+
"type": "string",
|
|
720
|
+
"description": "Music title."
|
|
700
721
|
},
|
|
701
|
-
"
|
|
722
|
+
"persona_id": {
|
|
702
723
|
"type": "string",
|
|
703
|
-
"description": "
|
|
724
|
+
"description": "Persona ID."
|
|
704
725
|
},
|
|
705
726
|
"persona_type": {
|
|
727
|
+
"type": "string",
|
|
706
728
|
"enum": [
|
|
707
729
|
"style",
|
|
708
730
|
"voice"
|
|
709
731
|
],
|
|
710
|
-
"type": "string",
|
|
711
732
|
"description": "Persona type."
|
|
733
|
+
}
|
|
734
|
+
},
|
|
735
|
+
"suno-v4.5-all": {
|
|
736
|
+
"callback_url": {
|
|
737
|
+
"type": "string",
|
|
738
|
+
"description": "Webhook URL for async notifications."
|
|
712
739
|
},
|
|
713
|
-
"
|
|
714
|
-
"type": "
|
|
715
|
-
"
|
|
740
|
+
"model": {
|
|
741
|
+
"type": "string",
|
|
742
|
+
"required": true,
|
|
743
|
+
"description": "Model slug."
|
|
716
744
|
},
|
|
717
745
|
"vocal_gender": {
|
|
746
|
+
"type": "string",
|
|
718
747
|
"enum": [
|
|
719
748
|
"male",
|
|
720
749
|
"female"
|
|
721
750
|
],
|
|
722
|
-
"type": "string",
|
|
723
751
|
"description": "Vocal gender."
|
|
724
752
|
},
|
|
725
|
-
"
|
|
726
|
-
"type": "
|
|
727
|
-
"
|
|
728
|
-
"description": "Two audio URLs to mashup."
|
|
753
|
+
"style_weight": {
|
|
754
|
+
"type": "number",
|
|
755
|
+
"description": "Style adherence weight (0-1)."
|
|
729
756
|
},
|
|
730
757
|
"weirdness_constraint": {
|
|
731
758
|
"type": "number",
|
|
732
759
|
"description": "Weirdness constraint (0-1)."
|
|
733
|
-
}
|
|
734
|
-
},
|
|
735
|
-
"suno-v4.5-all": {
|
|
736
|
-
"model": {
|
|
737
|
-
"type": "string",
|
|
738
|
-
"required": true,
|
|
739
|
-
"description": "Model slug."
|
|
740
760
|
},
|
|
741
|
-
"
|
|
742
|
-
"type": "
|
|
743
|
-
"description": "
|
|
761
|
+
"audio_weight": {
|
|
762
|
+
"type": "number",
|
|
763
|
+
"description": "Audio weight (0-1)."
|
|
744
764
|
},
|
|
745
|
-
"
|
|
746
|
-
"type": "
|
|
747
|
-
"
|
|
765
|
+
"upload_url_list": {
|
|
766
|
+
"type": "array",
|
|
767
|
+
"required": true,
|
|
768
|
+
"description": "Two audio URLs to mashup."
|
|
748
769
|
},
|
|
749
|
-
"
|
|
770
|
+
"vocal_mode": {
|
|
750
771
|
"type": "string",
|
|
751
|
-
"
|
|
772
|
+
"enum": [
|
|
773
|
+
"auto_lyrics",
|
|
774
|
+
"exact_lyrics",
|
|
775
|
+
"instrumental"
|
|
776
|
+
],
|
|
777
|
+
"required": true,
|
|
778
|
+
"description": "Vocal generation mode."
|
|
752
779
|
},
|
|
753
780
|
"prompt": {
|
|
754
781
|
"type": "string",
|
|
755
782
|
"description": "Mashup brief for automatic lyrics."
|
|
756
783
|
},
|
|
757
|
-
"
|
|
784
|
+
"lyrics": {
|
|
758
785
|
"type": "string",
|
|
759
|
-
"description": "
|
|
786
|
+
"description": "Exact mashup lyrics to sing."
|
|
760
787
|
},
|
|
761
|
-
"
|
|
762
|
-
"enum": [
|
|
763
|
-
"auto_lyrics",
|
|
764
|
-
"exact_lyrics",
|
|
765
|
-
"instrumental"
|
|
766
|
-
],
|
|
788
|
+
"style": {
|
|
767
789
|
"type": "string",
|
|
768
|
-
"
|
|
769
|
-
"description": "Vocal generation mode."
|
|
790
|
+
"description": "Music style."
|
|
770
791
|
},
|
|
771
|
-
"
|
|
772
|
-
"type": "
|
|
773
|
-
"description": "
|
|
792
|
+
"title": {
|
|
793
|
+
"type": "string",
|
|
794
|
+
"description": "Music title."
|
|
774
795
|
},
|
|
775
|
-
"
|
|
796
|
+
"persona_id": {
|
|
776
797
|
"type": "string",
|
|
777
|
-
"description": "
|
|
798
|
+
"description": "Persona ID."
|
|
778
799
|
},
|
|
779
800
|
"persona_type": {
|
|
801
|
+
"type": "string",
|
|
780
802
|
"enum": [
|
|
781
803
|
"style",
|
|
782
804
|
"voice"
|
|
783
805
|
],
|
|
784
|
-
"type": "string",
|
|
785
806
|
"description": "Persona type."
|
|
807
|
+
}
|
|
808
|
+
},
|
|
809
|
+
"suno-v4.5-plus": {
|
|
810
|
+
"callback_url": {
|
|
811
|
+
"type": "string",
|
|
812
|
+
"description": "Webhook URL for async notifications."
|
|
786
813
|
},
|
|
787
|
-
"
|
|
788
|
-
"type": "
|
|
789
|
-
"
|
|
814
|
+
"model": {
|
|
815
|
+
"type": "string",
|
|
816
|
+
"required": true,
|
|
817
|
+
"description": "Model slug."
|
|
790
818
|
},
|
|
791
819
|
"vocal_gender": {
|
|
820
|
+
"type": "string",
|
|
792
821
|
"enum": [
|
|
793
822
|
"male",
|
|
794
823
|
"female"
|
|
795
824
|
],
|
|
796
|
-
"type": "string",
|
|
797
825
|
"description": "Vocal gender."
|
|
798
826
|
},
|
|
799
|
-
"
|
|
800
|
-
"type": "
|
|
801
|
-
"
|
|
802
|
-
"description": "Two audio URLs to mashup."
|
|
827
|
+
"style_weight": {
|
|
828
|
+
"type": "number",
|
|
829
|
+
"description": "Style adherence weight (0-1)."
|
|
803
830
|
},
|
|
804
831
|
"weirdness_constraint": {
|
|
805
832
|
"type": "number",
|
|
806
833
|
"description": "Weirdness constraint (0-1)."
|
|
807
|
-
}
|
|
808
|
-
},
|
|
809
|
-
"suno-v4.5-plus": {
|
|
810
|
-
"model": {
|
|
811
|
-
"type": "string",
|
|
812
|
-
"required": true,
|
|
813
|
-
"description": "Model slug."
|
|
814
834
|
},
|
|
815
|
-
"
|
|
816
|
-
"type": "
|
|
817
|
-
"description": "
|
|
835
|
+
"audio_weight": {
|
|
836
|
+
"type": "number",
|
|
837
|
+
"description": "Audio weight (0-1)."
|
|
818
838
|
},
|
|
819
|
-
"
|
|
820
|
-
"type": "
|
|
821
|
-
"
|
|
839
|
+
"upload_url_list": {
|
|
840
|
+
"type": "array",
|
|
841
|
+
"required": true,
|
|
842
|
+
"description": "Two audio URLs to mashup."
|
|
822
843
|
},
|
|
823
|
-
"
|
|
844
|
+
"vocal_mode": {
|
|
824
845
|
"type": "string",
|
|
825
|
-
"
|
|
846
|
+
"enum": [
|
|
847
|
+
"auto_lyrics",
|
|
848
|
+
"exact_lyrics",
|
|
849
|
+
"instrumental"
|
|
850
|
+
],
|
|
851
|
+
"required": true,
|
|
852
|
+
"description": "Vocal generation mode."
|
|
826
853
|
},
|
|
827
854
|
"prompt": {
|
|
828
855
|
"type": "string",
|
|
829
856
|
"description": "Mashup brief for automatic lyrics."
|
|
830
857
|
},
|
|
831
|
-
"
|
|
858
|
+
"lyrics": {
|
|
832
859
|
"type": "string",
|
|
833
|
-
"description": "
|
|
860
|
+
"description": "Exact mashup lyrics to sing."
|
|
834
861
|
},
|
|
835
|
-
"
|
|
836
|
-
"enum": [
|
|
837
|
-
"auto_lyrics",
|
|
838
|
-
"exact_lyrics",
|
|
839
|
-
"instrumental"
|
|
840
|
-
],
|
|
862
|
+
"style": {
|
|
841
863
|
"type": "string",
|
|
842
|
-
"
|
|
843
|
-
"description": "Vocal generation mode."
|
|
864
|
+
"description": "Music style."
|
|
844
865
|
},
|
|
845
|
-
"
|
|
846
|
-
"type": "
|
|
847
|
-
"description": "
|
|
866
|
+
"title": {
|
|
867
|
+
"type": "string",
|
|
868
|
+
"description": "Music title."
|
|
848
869
|
},
|
|
849
|
-
"
|
|
870
|
+
"persona_id": {
|
|
850
871
|
"type": "string",
|
|
851
|
-
"description": "
|
|
872
|
+
"description": "Persona ID."
|
|
852
873
|
},
|
|
853
874
|
"persona_type": {
|
|
875
|
+
"type": "string",
|
|
854
876
|
"enum": [
|
|
855
877
|
"style",
|
|
856
878
|
"voice"
|
|
857
879
|
],
|
|
858
|
-
"type": "string",
|
|
859
880
|
"description": "Persona type."
|
|
881
|
+
}
|
|
882
|
+
},
|
|
883
|
+
"suno-v5": {
|
|
884
|
+
"callback_url": {
|
|
885
|
+
"type": "string",
|
|
886
|
+
"description": "Webhook URL for async notifications."
|
|
860
887
|
},
|
|
861
|
-
"
|
|
862
|
-
"type": "
|
|
863
|
-
"
|
|
888
|
+
"model": {
|
|
889
|
+
"type": "string",
|
|
890
|
+
"required": true,
|
|
891
|
+
"description": "Model slug."
|
|
864
892
|
},
|
|
865
893
|
"vocal_gender": {
|
|
894
|
+
"type": "string",
|
|
866
895
|
"enum": [
|
|
867
896
|
"male",
|
|
868
897
|
"female"
|
|
869
898
|
],
|
|
870
|
-
"type": "string",
|
|
871
899
|
"description": "Vocal gender."
|
|
872
900
|
},
|
|
873
|
-
"
|
|
874
|
-
"type": "
|
|
875
|
-
"
|
|
876
|
-
"description": "Two audio URLs to mashup."
|
|
901
|
+
"style_weight": {
|
|
902
|
+
"type": "number",
|
|
903
|
+
"description": "Style adherence weight (0-1)."
|
|
877
904
|
},
|
|
878
905
|
"weirdness_constraint": {
|
|
879
906
|
"type": "number",
|
|
880
907
|
"description": "Weirdness constraint (0-1)."
|
|
881
|
-
}
|
|
882
|
-
},
|
|
883
|
-
"suno-v5": {
|
|
884
|
-
"model": {
|
|
885
|
-
"type": "string",
|
|
886
|
-
"required": true,
|
|
887
|
-
"description": "Model slug."
|
|
888
908
|
},
|
|
889
|
-
"
|
|
890
|
-
"type": "
|
|
891
|
-
"description": "
|
|
909
|
+
"audio_weight": {
|
|
910
|
+
"type": "number",
|
|
911
|
+
"description": "Audio weight (0-1)."
|
|
892
912
|
},
|
|
893
|
-
"
|
|
894
|
-
"type": "
|
|
895
|
-
"
|
|
913
|
+
"upload_url_list": {
|
|
914
|
+
"type": "array",
|
|
915
|
+
"required": true,
|
|
916
|
+
"description": "Two audio URLs to mashup."
|
|
896
917
|
},
|
|
897
|
-
"
|
|
918
|
+
"vocal_mode": {
|
|
898
919
|
"type": "string",
|
|
899
|
-
"
|
|
920
|
+
"enum": [
|
|
921
|
+
"auto_lyrics",
|
|
922
|
+
"exact_lyrics",
|
|
923
|
+
"instrumental"
|
|
924
|
+
],
|
|
925
|
+
"required": true,
|
|
926
|
+
"description": "Vocal generation mode."
|
|
900
927
|
},
|
|
901
928
|
"prompt": {
|
|
902
929
|
"type": "string",
|
|
903
930
|
"description": "Mashup brief for automatic lyrics."
|
|
904
931
|
},
|
|
905
|
-
"
|
|
932
|
+
"lyrics": {
|
|
906
933
|
"type": "string",
|
|
907
|
-
"description": "
|
|
934
|
+
"description": "Exact mashup lyrics to sing."
|
|
908
935
|
},
|
|
909
|
-
"
|
|
910
|
-
"enum": [
|
|
911
|
-
"auto_lyrics",
|
|
912
|
-
"exact_lyrics",
|
|
913
|
-
"instrumental"
|
|
914
|
-
],
|
|
936
|
+
"style": {
|
|
915
937
|
"type": "string",
|
|
916
|
-
"
|
|
917
|
-
"description": "Vocal generation mode."
|
|
938
|
+
"description": "Music style."
|
|
918
939
|
},
|
|
919
|
-
"
|
|
920
|
-
"type": "
|
|
921
|
-
"description": "
|
|
940
|
+
"title": {
|
|
941
|
+
"type": "string",
|
|
942
|
+
"description": "Music title."
|
|
922
943
|
},
|
|
923
|
-
"
|
|
944
|
+
"persona_id": {
|
|
924
945
|
"type": "string",
|
|
925
|
-
"description": "
|
|
946
|
+
"description": "Persona ID."
|
|
926
947
|
},
|
|
927
948
|
"persona_type": {
|
|
949
|
+
"type": "string",
|
|
928
950
|
"enum": [
|
|
929
951
|
"style",
|
|
930
952
|
"voice"
|
|
931
953
|
],
|
|
932
|
-
"type": "string",
|
|
933
954
|
"description": "Persona type."
|
|
955
|
+
}
|
|
956
|
+
},
|
|
957
|
+
"suno-v5.5": {
|
|
958
|
+
"callback_url": {
|
|
959
|
+
"type": "string",
|
|
960
|
+
"description": "Webhook URL for async notifications."
|
|
934
961
|
},
|
|
935
|
-
"
|
|
936
|
-
"type": "
|
|
937
|
-
"
|
|
962
|
+
"model": {
|
|
963
|
+
"type": "string",
|
|
964
|
+
"required": true,
|
|
965
|
+
"description": "Model slug."
|
|
938
966
|
},
|
|
939
967
|
"vocal_gender": {
|
|
968
|
+
"type": "string",
|
|
940
969
|
"enum": [
|
|
941
970
|
"male",
|
|
942
971
|
"female"
|
|
943
972
|
],
|
|
944
|
-
"type": "string",
|
|
945
973
|
"description": "Vocal gender."
|
|
946
974
|
},
|
|
947
|
-
"
|
|
948
|
-
"type": "
|
|
949
|
-
"
|
|
950
|
-
"description": "Two audio URLs to mashup."
|
|
975
|
+
"style_weight": {
|
|
976
|
+
"type": "number",
|
|
977
|
+
"description": "Style adherence weight (0-1)."
|
|
951
978
|
},
|
|
952
979
|
"weirdness_constraint": {
|
|
953
980
|
"type": "number",
|
|
954
981
|
"description": "Weirdness constraint (0-1)."
|
|
955
|
-
}
|
|
956
|
-
},
|
|
957
|
-
"suno-v5.5": {
|
|
958
|
-
"model": {
|
|
959
|
-
"type": "string",
|
|
960
|
-
"required": true,
|
|
961
|
-
"description": "Model slug."
|
|
962
982
|
},
|
|
963
|
-
"
|
|
964
|
-
"type": "
|
|
965
|
-
"description": "
|
|
983
|
+
"audio_weight": {
|
|
984
|
+
"type": "number",
|
|
985
|
+
"description": "Audio weight (0-1)."
|
|
966
986
|
},
|
|
967
|
-
"
|
|
968
|
-
"type": "
|
|
969
|
-
"
|
|
987
|
+
"upload_url_list": {
|
|
988
|
+
"type": "array",
|
|
989
|
+
"required": true,
|
|
990
|
+
"description": "Two audio URLs to mashup."
|
|
970
991
|
},
|
|
971
|
-
"
|
|
992
|
+
"vocal_mode": {
|
|
972
993
|
"type": "string",
|
|
973
|
-
"
|
|
994
|
+
"enum": [
|
|
995
|
+
"auto_lyrics",
|
|
996
|
+
"exact_lyrics",
|
|
997
|
+
"instrumental"
|
|
998
|
+
],
|
|
999
|
+
"required": true,
|
|
1000
|
+
"description": "Vocal generation mode."
|
|
974
1001
|
},
|
|
975
1002
|
"prompt": {
|
|
976
1003
|
"type": "string",
|
|
977
1004
|
"description": "Mashup brief for automatic lyrics."
|
|
978
1005
|
},
|
|
979
|
-
"
|
|
1006
|
+
"lyrics": {
|
|
980
1007
|
"type": "string",
|
|
981
|
-
"description": "
|
|
1008
|
+
"description": "Exact mashup lyrics to sing."
|
|
982
1009
|
},
|
|
983
|
-
"
|
|
984
|
-
"enum": [
|
|
985
|
-
"auto_lyrics",
|
|
986
|
-
"exact_lyrics",
|
|
987
|
-
"instrumental"
|
|
988
|
-
],
|
|
1010
|
+
"style": {
|
|
989
1011
|
"type": "string",
|
|
990
|
-
"
|
|
991
|
-
"description": "Vocal generation mode."
|
|
1012
|
+
"description": "Music style."
|
|
992
1013
|
},
|
|
993
|
-
"
|
|
994
|
-
"type": "
|
|
995
|
-
"description": "
|
|
1014
|
+
"title": {
|
|
1015
|
+
"type": "string",
|
|
1016
|
+
"description": "Music title."
|
|
996
1017
|
},
|
|
997
|
-
"
|
|
1018
|
+
"persona_id": {
|
|
998
1019
|
"type": "string",
|
|
999
|
-
"description": "
|
|
1020
|
+
"description": "Persona ID."
|
|
1000
1021
|
},
|
|
1001
1022
|
"persona_type": {
|
|
1023
|
+
"type": "string",
|
|
1002
1024
|
"enum": [
|
|
1003
1025
|
"style",
|
|
1004
1026
|
"voice"
|
|
1005
1027
|
],
|
|
1006
|
-
"type": "string",
|
|
1007
1028
|
"description": "Persona type."
|
|
1008
|
-
},
|
|
1009
|
-
"style_weight": {
|
|
1010
|
-
"type": "number",
|
|
1011
|
-
"description": "Style adherence weight (0-1)."
|
|
1012
|
-
},
|
|
1013
|
-
"vocal_gender": {
|
|
1014
|
-
"enum": [
|
|
1015
|
-
"male",
|
|
1016
|
-
"female"
|
|
1017
|
-
],
|
|
1018
|
-
"type": "string",
|
|
1019
|
-
"description": "Vocal gender."
|
|
1020
|
-
},
|
|
1021
|
-
"upload_url_list": {
|
|
1022
|
-
"type": "array",
|
|
1023
|
-
"required": true,
|
|
1024
|
-
"description": "Two audio URLs to mashup."
|
|
1025
|
-
},
|
|
1026
|
-
"weirdness_constraint": {
|
|
1027
|
-
"type": "number",
|
|
1028
|
-
"description": "Weirdness constraint (0-1)."
|
|
1029
1029
|
}
|
|
1030
1030
|
}
|
|
1031
1031
|
}
|
|
@@ -1043,26 +1043,34 @@
|
|
|
1043
1043
|
],
|
|
1044
1044
|
"fields_by_model": {
|
|
1045
1045
|
"suno-v4": {
|
|
1046
|
+
"callback_url": {
|
|
1047
|
+
"type": "string",
|
|
1048
|
+
"description": "Webhook URL for async notifications."
|
|
1049
|
+
},
|
|
1046
1050
|
"model": {
|
|
1047
1051
|
"type": "string",
|
|
1048
1052
|
"required": true,
|
|
1049
1053
|
"description": "Model slug."
|
|
1050
1054
|
},
|
|
1051
|
-
"
|
|
1055
|
+
"vocal_gender": {
|
|
1052
1056
|
"type": "string",
|
|
1053
|
-
"
|
|
1057
|
+
"enum": [
|
|
1058
|
+
"male",
|
|
1059
|
+
"female"
|
|
1060
|
+
],
|
|
1061
|
+
"description": "Vocal gender."
|
|
1054
1062
|
},
|
|
1055
|
-
"
|
|
1056
|
-
"type": "
|
|
1057
|
-
"description": "
|
|
1063
|
+
"style_weight": {
|
|
1064
|
+
"type": "number",
|
|
1065
|
+
"description": "Style adherence weight (0-1)."
|
|
1058
1066
|
},
|
|
1059
|
-
"
|
|
1060
|
-
"type": "
|
|
1061
|
-
"description": "
|
|
1067
|
+
"weirdness_constraint": {
|
|
1068
|
+
"type": "number",
|
|
1069
|
+
"description": "Weirdness constraint (0-1)."
|
|
1062
1070
|
},
|
|
1063
|
-
"
|
|
1064
|
-
"type": "
|
|
1065
|
-
"description": "
|
|
1071
|
+
"audio_weight": {
|
|
1072
|
+
"type": "number",
|
|
1073
|
+
"description": "Audio weight (0-1)."
|
|
1066
1074
|
},
|
|
1067
1075
|
"task_id": {
|
|
1068
1076
|
"type": "string",
|
|
@@ -1076,183 +1084,183 @@
|
|
|
1076
1084
|
"type": "string",
|
|
1077
1085
|
"description": "Source audio URL to extend. Provide one of task_id, audio_id, audio_url, or upload_url."
|
|
1078
1086
|
},
|
|
1079
|
-
"persona_id": {
|
|
1080
|
-
"type": "string",
|
|
1081
|
-
"description": "Persona ID."
|
|
1082
|
-
},
|
|
1083
1087
|
"upload_url": {
|
|
1084
1088
|
"type": "string",
|
|
1085
1089
|
"description": "Uploaded source audio URL to extend. Provide one of task_id, audio_id, audio_url, or upload_url."
|
|
1086
1090
|
},
|
|
1087
|
-
"
|
|
1088
|
-
"type": "number",
|
|
1089
|
-
"description": "Seconds into the source to continue from. Required in custom parameter mode."
|
|
1090
|
-
},
|
|
1091
|
-
"audio_weight": {
|
|
1092
|
-
"type": "number",
|
|
1093
|
-
"description": "Audio weight (0-1)."
|
|
1094
|
-
},
|
|
1095
|
-
"callback_url": {
|
|
1091
|
+
"parameter_mode": {
|
|
1096
1092
|
"type": "string",
|
|
1097
|
-
"
|
|
1093
|
+
"enum": [
|
|
1094
|
+
"source",
|
|
1095
|
+
"custom"
|
|
1096
|
+
],
|
|
1097
|
+
"description": "Inherit the source track's parameters (source) or supply custom ones (custom)."
|
|
1098
1098
|
},
|
|
1099
1099
|
"instrumental": {
|
|
1100
1100
|
"type": "boolean",
|
|
1101
1101
|
"description": "When true, generate without vocals."
|
|
1102
1102
|
},
|
|
1103
|
+
"prompt": {
|
|
1104
|
+
"type": "string",
|
|
1105
|
+
"description": "Extension brief. Cannot be combined with lyrics."
|
|
1106
|
+
},
|
|
1107
|
+
"lyrics": {
|
|
1108
|
+
"type": "string",
|
|
1109
|
+
"description": "Exact lyrics. Only allowed when extending uploaded audio in custom parameter mode."
|
|
1110
|
+
},
|
|
1111
|
+
"style": {
|
|
1112
|
+
"type": "string",
|
|
1113
|
+
"description": "Style preset. Required in custom parameter mode."
|
|
1114
|
+
},
|
|
1115
|
+
"title": {
|
|
1116
|
+
"type": "string",
|
|
1117
|
+
"description": "Song title. Required in custom parameter mode."
|
|
1118
|
+
},
|
|
1119
|
+
"continue_at": {
|
|
1120
|
+
"type": "number",
|
|
1121
|
+
"description": "Seconds into the source to continue from. Required in custom parameter mode."
|
|
1122
|
+
},
|
|
1123
|
+
"persona_id": {
|
|
1124
|
+
"type": "string",
|
|
1125
|
+
"description": "Persona ID."
|
|
1126
|
+
},
|
|
1103
1127
|
"persona_type": {
|
|
1128
|
+
"type": "string",
|
|
1104
1129
|
"enum": [
|
|
1105
1130
|
"style",
|
|
1106
1131
|
"voice"
|
|
1107
1132
|
],
|
|
1108
|
-
"type": "string",
|
|
1109
1133
|
"description": "Persona type."
|
|
1110
1134
|
},
|
|
1111
|
-
"
|
|
1112
|
-
"type": "
|
|
1113
|
-
"description": "
|
|
1135
|
+
"negative_tags": {
|
|
1136
|
+
"type": "string",
|
|
1137
|
+
"description": "Styles to avoid."
|
|
1138
|
+
}
|
|
1139
|
+
},
|
|
1140
|
+
"suno-v4.5": {
|
|
1141
|
+
"callback_url": {
|
|
1142
|
+
"type": "string",
|
|
1143
|
+
"description": "Webhook URL for async notifications."
|
|
1144
|
+
},
|
|
1145
|
+
"model": {
|
|
1146
|
+
"type": "string",
|
|
1147
|
+
"required": true,
|
|
1148
|
+
"description": "Model slug."
|
|
1114
1149
|
},
|
|
1115
1150
|
"vocal_gender": {
|
|
1151
|
+
"type": "string",
|
|
1116
1152
|
"enum": [
|
|
1117
1153
|
"male",
|
|
1118
1154
|
"female"
|
|
1119
1155
|
],
|
|
1120
|
-
"type": "string",
|
|
1121
1156
|
"description": "Vocal gender."
|
|
1122
1157
|
},
|
|
1123
|
-
"
|
|
1124
|
-
"type": "
|
|
1125
|
-
"description": "
|
|
1126
|
-
},
|
|
1127
|
-
"parameter_mode": {
|
|
1128
|
-
"enum": [
|
|
1129
|
-
"source",
|
|
1130
|
-
"custom"
|
|
1131
|
-
],
|
|
1132
|
-
"type": "string",
|
|
1133
|
-
"description": "Inherit the source track's parameters (source) or supply custom ones (custom)."
|
|
1158
|
+
"style_weight": {
|
|
1159
|
+
"type": "number",
|
|
1160
|
+
"description": "Style adherence weight (0-1)."
|
|
1134
1161
|
},
|
|
1135
1162
|
"weirdness_constraint": {
|
|
1136
1163
|
"type": "number",
|
|
1137
1164
|
"description": "Weirdness constraint (0-1)."
|
|
1138
|
-
}
|
|
1139
|
-
|
|
1140
|
-
|
|
1141
|
-
|
|
1165
|
+
},
|
|
1166
|
+
"audio_weight": {
|
|
1167
|
+
"type": "number",
|
|
1168
|
+
"description": "Audio weight (0-1)."
|
|
1169
|
+
},
|
|
1170
|
+
"task_id": {
|
|
1142
1171
|
"type": "string",
|
|
1143
|
-
"
|
|
1144
|
-
"description": "Model slug."
|
|
1172
|
+
"description": "Source task ID to extend. Provide one of task_id, audio_id, audio_url, or upload_url."
|
|
1145
1173
|
},
|
|
1146
|
-
"
|
|
1174
|
+
"audio_id": {
|
|
1147
1175
|
"type": "string",
|
|
1148
|
-
"description": "
|
|
1176
|
+
"description": "Source audio ID to extend. Provide one of task_id, audio_id, audio_url, or upload_url."
|
|
1149
1177
|
},
|
|
1150
|
-
"
|
|
1178
|
+
"audio_url": {
|
|
1151
1179
|
"type": "string",
|
|
1152
|
-
"description": "
|
|
1180
|
+
"description": "Source audio URL to extend. Provide one of task_id, audio_id, audio_url, or upload_url."
|
|
1153
1181
|
},
|
|
1154
|
-
"
|
|
1182
|
+
"upload_url": {
|
|
1155
1183
|
"type": "string",
|
|
1156
|
-
"description": "
|
|
1184
|
+
"description": "Uploaded source audio URL to extend. Provide one of task_id, audio_id, audio_url, or upload_url."
|
|
1185
|
+
},
|
|
1186
|
+
"parameter_mode": {
|
|
1187
|
+
"type": "string",
|
|
1188
|
+
"enum": [
|
|
1189
|
+
"source",
|
|
1190
|
+
"custom"
|
|
1191
|
+
],
|
|
1192
|
+
"description": "Inherit the source track's parameters (source) or supply custom ones (custom)."
|
|
1193
|
+
},
|
|
1194
|
+
"instrumental": {
|
|
1195
|
+
"type": "boolean",
|
|
1196
|
+
"description": "When true, generate without vocals."
|
|
1157
1197
|
},
|
|
1158
1198
|
"prompt": {
|
|
1159
1199
|
"type": "string",
|
|
1160
1200
|
"description": "Extension brief. Cannot be combined with lyrics."
|
|
1161
1201
|
},
|
|
1162
|
-
"
|
|
1163
|
-
"type": "string",
|
|
1164
|
-
"description": "Source task ID to extend. Provide one of task_id, audio_id, audio_url, or upload_url."
|
|
1165
|
-
},
|
|
1166
|
-
"audio_id": {
|
|
1167
|
-
"type": "string",
|
|
1168
|
-
"description": "Source audio ID to extend. Provide one of task_id, audio_id, audio_url, or upload_url."
|
|
1169
|
-
},
|
|
1170
|
-
"audio_url": {
|
|
1202
|
+
"lyrics": {
|
|
1171
1203
|
"type": "string",
|
|
1172
|
-
"description": "
|
|
1204
|
+
"description": "Exact lyrics. Only allowed when extending uploaded audio in custom parameter mode."
|
|
1173
1205
|
},
|
|
1174
|
-
"
|
|
1206
|
+
"style": {
|
|
1175
1207
|
"type": "string",
|
|
1176
|
-
"description": "
|
|
1208
|
+
"description": "Style preset. Required in custom parameter mode."
|
|
1177
1209
|
},
|
|
1178
|
-
"
|
|
1210
|
+
"title": {
|
|
1179
1211
|
"type": "string",
|
|
1180
|
-
"description": "
|
|
1212
|
+
"description": "Song title. Required in custom parameter mode."
|
|
1181
1213
|
},
|
|
1182
1214
|
"continue_at": {
|
|
1183
1215
|
"type": "number",
|
|
1184
1216
|
"description": "Seconds into the source to continue from. Required in custom parameter mode."
|
|
1185
1217
|
},
|
|
1186
|
-
"
|
|
1187
|
-
"type": "number",
|
|
1188
|
-
"description": "Audio weight (0-1)."
|
|
1189
|
-
},
|
|
1190
|
-
"callback_url": {
|
|
1218
|
+
"persona_id": {
|
|
1191
1219
|
"type": "string",
|
|
1192
|
-
"description": "
|
|
1193
|
-
},
|
|
1194
|
-
"instrumental": {
|
|
1195
|
-
"type": "boolean",
|
|
1196
|
-
"description": "When true, generate without vocals."
|
|
1220
|
+
"description": "Persona ID."
|
|
1197
1221
|
},
|
|
1198
1222
|
"persona_type": {
|
|
1223
|
+
"type": "string",
|
|
1199
1224
|
"enum": [
|
|
1200
1225
|
"style",
|
|
1201
1226
|
"voice"
|
|
1202
1227
|
],
|
|
1203
|
-
"type": "string",
|
|
1204
1228
|
"description": "Persona type."
|
|
1205
1229
|
},
|
|
1206
|
-
"style_weight": {
|
|
1207
|
-
"type": "number",
|
|
1208
|
-
"description": "Style adherence weight (0-1)."
|
|
1209
|
-
},
|
|
1210
|
-
"vocal_gender": {
|
|
1211
|
-
"enum": [
|
|
1212
|
-
"male",
|
|
1213
|
-
"female"
|
|
1214
|
-
],
|
|
1215
|
-
"type": "string",
|
|
1216
|
-
"description": "Vocal gender."
|
|
1217
|
-
},
|
|
1218
1230
|
"negative_tags": {
|
|
1219
1231
|
"type": "string",
|
|
1220
1232
|
"description": "Styles to avoid."
|
|
1221
|
-
},
|
|
1222
|
-
"parameter_mode": {
|
|
1223
|
-
"enum": [
|
|
1224
|
-
"source",
|
|
1225
|
-
"custom"
|
|
1226
|
-
],
|
|
1227
|
-
"type": "string",
|
|
1228
|
-
"description": "Inherit the source track's parameters (source) or supply custom ones (custom)."
|
|
1229
|
-
},
|
|
1230
|
-
"weirdness_constraint": {
|
|
1231
|
-
"type": "number",
|
|
1232
|
-
"description": "Weirdness constraint (0-1)."
|
|
1233
1233
|
}
|
|
1234
1234
|
},
|
|
1235
1235
|
"suno-v4.5-all": {
|
|
1236
|
+
"callback_url": {
|
|
1237
|
+
"type": "string",
|
|
1238
|
+
"description": "Webhook URL for async notifications."
|
|
1239
|
+
},
|
|
1236
1240
|
"model": {
|
|
1237
1241
|
"type": "string",
|
|
1238
1242
|
"required": true,
|
|
1239
1243
|
"description": "Model slug."
|
|
1240
1244
|
},
|
|
1241
|
-
"
|
|
1245
|
+
"vocal_gender": {
|
|
1242
1246
|
"type": "string",
|
|
1243
|
-
"
|
|
1247
|
+
"enum": [
|
|
1248
|
+
"male",
|
|
1249
|
+
"female"
|
|
1250
|
+
],
|
|
1251
|
+
"description": "Vocal gender."
|
|
1244
1252
|
},
|
|
1245
|
-
"
|
|
1246
|
-
"type": "
|
|
1247
|
-
"description": "
|
|
1253
|
+
"style_weight": {
|
|
1254
|
+
"type": "number",
|
|
1255
|
+
"description": "Style adherence weight (0-1)."
|
|
1248
1256
|
},
|
|
1249
|
-
"
|
|
1250
|
-
"type": "
|
|
1251
|
-
"description": "
|
|
1257
|
+
"weirdness_constraint": {
|
|
1258
|
+
"type": "number",
|
|
1259
|
+
"description": "Weirdness constraint (0-1)."
|
|
1252
1260
|
},
|
|
1253
|
-
"
|
|
1254
|
-
"type": "
|
|
1255
|
-
"description": "
|
|
1261
|
+
"audio_weight": {
|
|
1262
|
+
"type": "number",
|
|
1263
|
+
"description": "Audio weight (0-1)."
|
|
1256
1264
|
},
|
|
1257
1265
|
"task_id": {
|
|
1258
1266
|
"type": "string",
|
|
@@ -1266,88 +1274,88 @@
|
|
|
1266
1274
|
"type": "string",
|
|
1267
1275
|
"description": "Source audio URL to extend. Provide one of task_id, audio_id, audio_url, or upload_url."
|
|
1268
1276
|
},
|
|
1269
|
-
"persona_id": {
|
|
1270
|
-
"type": "string",
|
|
1271
|
-
"description": "Persona ID."
|
|
1272
|
-
},
|
|
1273
1277
|
"upload_url": {
|
|
1274
1278
|
"type": "string",
|
|
1275
1279
|
"description": "Uploaded source audio URL to extend. Provide one of task_id, audio_id, audio_url, or upload_url."
|
|
1276
1280
|
},
|
|
1277
|
-
"
|
|
1278
|
-
"type": "number",
|
|
1279
|
-
"description": "Seconds into the source to continue from. Required in custom parameter mode."
|
|
1280
|
-
},
|
|
1281
|
-
"audio_weight": {
|
|
1282
|
-
"type": "number",
|
|
1283
|
-
"description": "Audio weight (0-1)."
|
|
1284
|
-
},
|
|
1285
|
-
"callback_url": {
|
|
1281
|
+
"parameter_mode": {
|
|
1286
1282
|
"type": "string",
|
|
1287
|
-
"
|
|
1283
|
+
"enum": [
|
|
1284
|
+
"source",
|
|
1285
|
+
"custom"
|
|
1286
|
+
],
|
|
1287
|
+
"description": "Inherit the source track's parameters (source) or supply custom ones (custom)."
|
|
1288
1288
|
},
|
|
1289
1289
|
"instrumental": {
|
|
1290
1290
|
"type": "boolean",
|
|
1291
1291
|
"description": "When true, generate without vocals."
|
|
1292
1292
|
},
|
|
1293
|
-
"
|
|
1294
|
-
"enum": [
|
|
1295
|
-
"style",
|
|
1296
|
-
"voice"
|
|
1297
|
-
],
|
|
1293
|
+
"prompt": {
|
|
1298
1294
|
"type": "string",
|
|
1299
|
-
"description": "
|
|
1295
|
+
"description": "Extension brief. Cannot be combined with lyrics."
|
|
1300
1296
|
},
|
|
1301
|
-
"
|
|
1302
|
-
"type": "
|
|
1303
|
-
"description": "
|
|
1297
|
+
"lyrics": {
|
|
1298
|
+
"type": "string",
|
|
1299
|
+
"description": "Exact lyrics. Only allowed when extending uploaded audio in custom parameter mode."
|
|
1304
1300
|
},
|
|
1305
|
-
"
|
|
1306
|
-
"enum": [
|
|
1307
|
-
"male",
|
|
1308
|
-
"female"
|
|
1309
|
-
],
|
|
1301
|
+
"style": {
|
|
1310
1302
|
"type": "string",
|
|
1311
|
-
"description": "
|
|
1303
|
+
"description": "Style preset. Required in custom parameter mode."
|
|
1312
1304
|
},
|
|
1313
|
-
"
|
|
1305
|
+
"title": {
|
|
1314
1306
|
"type": "string",
|
|
1315
|
-
"description": "
|
|
1307
|
+
"description": "Song title. Required in custom parameter mode."
|
|
1316
1308
|
},
|
|
1317
|
-
"
|
|
1309
|
+
"continue_at": {
|
|
1310
|
+
"type": "number",
|
|
1311
|
+
"description": "Seconds into the source to continue from. Required in custom parameter mode."
|
|
1312
|
+
},
|
|
1313
|
+
"persona_id": {
|
|
1314
|
+
"type": "string",
|
|
1315
|
+
"description": "Persona ID."
|
|
1316
|
+
},
|
|
1317
|
+
"persona_type": {
|
|
1318
|
+
"type": "string",
|
|
1318
1319
|
"enum": [
|
|
1319
|
-
"
|
|
1320
|
-
"
|
|
1320
|
+
"style",
|
|
1321
|
+
"voice"
|
|
1321
1322
|
],
|
|
1322
|
-
"
|
|
1323
|
-
"description": "Inherit the source track's parameters (source) or supply custom ones (custom)."
|
|
1323
|
+
"description": "Persona type."
|
|
1324
1324
|
},
|
|
1325
|
-
"
|
|
1326
|
-
"type": "
|
|
1327
|
-
"description": "
|
|
1325
|
+
"negative_tags": {
|
|
1326
|
+
"type": "string",
|
|
1327
|
+
"description": "Styles to avoid."
|
|
1328
1328
|
}
|
|
1329
1329
|
},
|
|
1330
1330
|
"suno-v4.5-plus": {
|
|
1331
|
+
"callback_url": {
|
|
1332
|
+
"type": "string",
|
|
1333
|
+
"description": "Webhook URL for async notifications."
|
|
1334
|
+
},
|
|
1331
1335
|
"model": {
|
|
1332
1336
|
"type": "string",
|
|
1333
1337
|
"required": true,
|
|
1334
1338
|
"description": "Model slug."
|
|
1335
1339
|
},
|
|
1336
|
-
"
|
|
1340
|
+
"vocal_gender": {
|
|
1337
1341
|
"type": "string",
|
|
1338
|
-
"
|
|
1342
|
+
"enum": [
|
|
1343
|
+
"male",
|
|
1344
|
+
"female"
|
|
1345
|
+
],
|
|
1346
|
+
"description": "Vocal gender."
|
|
1339
1347
|
},
|
|
1340
|
-
"
|
|
1341
|
-
"type": "
|
|
1342
|
-
"description": "
|
|
1348
|
+
"style_weight": {
|
|
1349
|
+
"type": "number",
|
|
1350
|
+
"description": "Style adherence weight (0-1)."
|
|
1343
1351
|
},
|
|
1344
|
-
"
|
|
1345
|
-
"type": "
|
|
1346
|
-
"description": "
|
|
1352
|
+
"weirdness_constraint": {
|
|
1353
|
+
"type": "number",
|
|
1354
|
+
"description": "Weirdness constraint (0-1)."
|
|
1347
1355
|
},
|
|
1348
|
-
"
|
|
1349
|
-
"type": "
|
|
1350
|
-
"description": "
|
|
1356
|
+
"audio_weight": {
|
|
1357
|
+
"type": "number",
|
|
1358
|
+
"description": "Audio weight (0-1)."
|
|
1351
1359
|
},
|
|
1352
1360
|
"task_id": {
|
|
1353
1361
|
"type": "string",
|
|
@@ -1361,88 +1369,88 @@
|
|
|
1361
1369
|
"type": "string",
|
|
1362
1370
|
"description": "Source audio URL to extend. Provide one of task_id, audio_id, audio_url, or upload_url."
|
|
1363
1371
|
},
|
|
1364
|
-
"persona_id": {
|
|
1365
|
-
"type": "string",
|
|
1366
|
-
"description": "Persona ID."
|
|
1367
|
-
},
|
|
1368
1372
|
"upload_url": {
|
|
1369
1373
|
"type": "string",
|
|
1370
1374
|
"description": "Uploaded source audio URL to extend. Provide one of task_id, audio_id, audio_url, or upload_url."
|
|
1371
1375
|
},
|
|
1372
|
-
"
|
|
1373
|
-
"type": "number",
|
|
1374
|
-
"description": "Seconds into the source to continue from. Required in custom parameter mode."
|
|
1375
|
-
},
|
|
1376
|
-
"audio_weight": {
|
|
1377
|
-
"type": "number",
|
|
1378
|
-
"description": "Audio weight (0-1)."
|
|
1379
|
-
},
|
|
1380
|
-
"callback_url": {
|
|
1376
|
+
"parameter_mode": {
|
|
1381
1377
|
"type": "string",
|
|
1382
|
-
"
|
|
1378
|
+
"enum": [
|
|
1379
|
+
"source",
|
|
1380
|
+
"custom"
|
|
1381
|
+
],
|
|
1382
|
+
"description": "Inherit the source track's parameters (source) or supply custom ones (custom)."
|
|
1383
1383
|
},
|
|
1384
1384
|
"instrumental": {
|
|
1385
1385
|
"type": "boolean",
|
|
1386
1386
|
"description": "When true, generate without vocals."
|
|
1387
1387
|
},
|
|
1388
|
-
"
|
|
1389
|
-
"enum": [
|
|
1390
|
-
"style",
|
|
1391
|
-
"voice"
|
|
1392
|
-
],
|
|
1388
|
+
"prompt": {
|
|
1393
1389
|
"type": "string",
|
|
1394
|
-
"description": "
|
|
1390
|
+
"description": "Extension brief. Cannot be combined with lyrics."
|
|
1395
1391
|
},
|
|
1396
|
-
"
|
|
1397
|
-
"type": "
|
|
1398
|
-
"description": "
|
|
1392
|
+
"lyrics": {
|
|
1393
|
+
"type": "string",
|
|
1394
|
+
"description": "Exact lyrics. Only allowed when extending uploaded audio in custom parameter mode."
|
|
1399
1395
|
},
|
|
1400
|
-
"
|
|
1401
|
-
"enum": [
|
|
1402
|
-
"male",
|
|
1403
|
-
"female"
|
|
1404
|
-
],
|
|
1396
|
+
"style": {
|
|
1405
1397
|
"type": "string",
|
|
1406
|
-
"description": "
|
|
1398
|
+
"description": "Style preset. Required in custom parameter mode."
|
|
1407
1399
|
},
|
|
1408
|
-
"
|
|
1400
|
+
"title": {
|
|
1409
1401
|
"type": "string",
|
|
1410
|
-
"description": "
|
|
1402
|
+
"description": "Song title. Required in custom parameter mode."
|
|
1411
1403
|
},
|
|
1412
|
-
"
|
|
1404
|
+
"continue_at": {
|
|
1405
|
+
"type": "number",
|
|
1406
|
+
"description": "Seconds into the source to continue from. Required in custom parameter mode."
|
|
1407
|
+
},
|
|
1408
|
+
"persona_id": {
|
|
1409
|
+
"type": "string",
|
|
1410
|
+
"description": "Persona ID."
|
|
1411
|
+
},
|
|
1412
|
+
"persona_type": {
|
|
1413
|
+
"type": "string",
|
|
1413
1414
|
"enum": [
|
|
1414
|
-
"
|
|
1415
|
-
"
|
|
1415
|
+
"style",
|
|
1416
|
+
"voice"
|
|
1416
1417
|
],
|
|
1417
|
-
"
|
|
1418
|
-
"description": "Inherit the source track's parameters (source) or supply custom ones (custom)."
|
|
1418
|
+
"description": "Persona type."
|
|
1419
1419
|
},
|
|
1420
|
-
"
|
|
1421
|
-
"type": "
|
|
1422
|
-
"description": "
|
|
1420
|
+
"negative_tags": {
|
|
1421
|
+
"type": "string",
|
|
1422
|
+
"description": "Styles to avoid."
|
|
1423
1423
|
}
|
|
1424
1424
|
},
|
|
1425
1425
|
"suno-v5": {
|
|
1426
|
+
"callback_url": {
|
|
1427
|
+
"type": "string",
|
|
1428
|
+
"description": "Webhook URL for async notifications."
|
|
1429
|
+
},
|
|
1426
1430
|
"model": {
|
|
1427
1431
|
"type": "string",
|
|
1428
1432
|
"required": true,
|
|
1429
1433
|
"description": "Model slug."
|
|
1430
1434
|
},
|
|
1431
|
-
"
|
|
1435
|
+
"vocal_gender": {
|
|
1432
1436
|
"type": "string",
|
|
1433
|
-
"
|
|
1437
|
+
"enum": [
|
|
1438
|
+
"male",
|
|
1439
|
+
"female"
|
|
1440
|
+
],
|
|
1441
|
+
"description": "Vocal gender."
|
|
1434
1442
|
},
|
|
1435
|
-
"
|
|
1436
|
-
"type": "
|
|
1437
|
-
"description": "
|
|
1443
|
+
"style_weight": {
|
|
1444
|
+
"type": "number",
|
|
1445
|
+
"description": "Style adherence weight (0-1)."
|
|
1438
1446
|
},
|
|
1439
|
-
"
|
|
1440
|
-
"type": "
|
|
1441
|
-
"description": "
|
|
1447
|
+
"weirdness_constraint": {
|
|
1448
|
+
"type": "number",
|
|
1449
|
+
"description": "Weirdness constraint (0-1)."
|
|
1442
1450
|
},
|
|
1443
|
-
"
|
|
1444
|
-
"type": "
|
|
1445
|
-
"description": "
|
|
1451
|
+
"audio_weight": {
|
|
1452
|
+
"type": "number",
|
|
1453
|
+
"description": "Audio weight (0-1)."
|
|
1446
1454
|
},
|
|
1447
1455
|
"task_id": {
|
|
1448
1456
|
"type": "string",
|
|
@@ -1456,88 +1464,88 @@
|
|
|
1456
1464
|
"type": "string",
|
|
1457
1465
|
"description": "Source audio URL to extend. Provide one of task_id, audio_id, audio_url, or upload_url."
|
|
1458
1466
|
},
|
|
1459
|
-
"persona_id": {
|
|
1460
|
-
"type": "string",
|
|
1461
|
-
"description": "Persona ID."
|
|
1462
|
-
},
|
|
1463
1467
|
"upload_url": {
|
|
1464
1468
|
"type": "string",
|
|
1465
1469
|
"description": "Uploaded source audio URL to extend. Provide one of task_id, audio_id, audio_url, or upload_url."
|
|
1466
1470
|
},
|
|
1467
|
-
"
|
|
1468
|
-
"type": "number",
|
|
1469
|
-
"description": "Seconds into the source to continue from. Required in custom parameter mode."
|
|
1470
|
-
},
|
|
1471
|
-
"audio_weight": {
|
|
1472
|
-
"type": "number",
|
|
1473
|
-
"description": "Audio weight (0-1)."
|
|
1474
|
-
},
|
|
1475
|
-
"callback_url": {
|
|
1471
|
+
"parameter_mode": {
|
|
1476
1472
|
"type": "string",
|
|
1477
|
-
"
|
|
1473
|
+
"enum": [
|
|
1474
|
+
"source",
|
|
1475
|
+
"custom"
|
|
1476
|
+
],
|
|
1477
|
+
"description": "Inherit the source track's parameters (source) or supply custom ones (custom)."
|
|
1478
1478
|
},
|
|
1479
1479
|
"instrumental": {
|
|
1480
1480
|
"type": "boolean",
|
|
1481
1481
|
"description": "When true, generate without vocals."
|
|
1482
1482
|
},
|
|
1483
|
-
"
|
|
1484
|
-
"enum": [
|
|
1485
|
-
"style",
|
|
1486
|
-
"voice"
|
|
1487
|
-
],
|
|
1483
|
+
"prompt": {
|
|
1488
1484
|
"type": "string",
|
|
1489
|
-
"description": "
|
|
1485
|
+
"description": "Extension brief. Cannot be combined with lyrics."
|
|
1490
1486
|
},
|
|
1491
|
-
"
|
|
1492
|
-
"type": "
|
|
1493
|
-
"description": "
|
|
1487
|
+
"lyrics": {
|
|
1488
|
+
"type": "string",
|
|
1489
|
+
"description": "Exact lyrics. Only allowed when extending uploaded audio in custom parameter mode."
|
|
1494
1490
|
},
|
|
1495
|
-
"
|
|
1496
|
-
"enum": [
|
|
1497
|
-
"male",
|
|
1498
|
-
"female"
|
|
1499
|
-
],
|
|
1491
|
+
"style": {
|
|
1500
1492
|
"type": "string",
|
|
1501
|
-
"description": "
|
|
1493
|
+
"description": "Style preset. Required in custom parameter mode."
|
|
1502
1494
|
},
|
|
1503
|
-
"
|
|
1495
|
+
"title": {
|
|
1504
1496
|
"type": "string",
|
|
1505
|
-
"description": "
|
|
1497
|
+
"description": "Song title. Required in custom parameter mode."
|
|
1506
1498
|
},
|
|
1507
|
-
"
|
|
1499
|
+
"continue_at": {
|
|
1500
|
+
"type": "number",
|
|
1501
|
+
"description": "Seconds into the source to continue from. Required in custom parameter mode."
|
|
1502
|
+
},
|
|
1503
|
+
"persona_id": {
|
|
1504
|
+
"type": "string",
|
|
1505
|
+
"description": "Persona ID."
|
|
1506
|
+
},
|
|
1507
|
+
"persona_type": {
|
|
1508
|
+
"type": "string",
|
|
1508
1509
|
"enum": [
|
|
1509
|
-
"
|
|
1510
|
-
"
|
|
1510
|
+
"style",
|
|
1511
|
+
"voice"
|
|
1511
1512
|
],
|
|
1512
|
-
"
|
|
1513
|
-
"description": "Inherit the source track's parameters (source) or supply custom ones (custom)."
|
|
1513
|
+
"description": "Persona type."
|
|
1514
1514
|
},
|
|
1515
|
-
"
|
|
1516
|
-
"type": "
|
|
1517
|
-
"description": "
|
|
1515
|
+
"negative_tags": {
|
|
1516
|
+
"type": "string",
|
|
1517
|
+
"description": "Styles to avoid."
|
|
1518
1518
|
}
|
|
1519
1519
|
},
|
|
1520
1520
|
"suno-v5.5": {
|
|
1521
|
+
"callback_url": {
|
|
1522
|
+
"type": "string",
|
|
1523
|
+
"description": "Webhook URL for async notifications."
|
|
1524
|
+
},
|
|
1521
1525
|
"model": {
|
|
1522
1526
|
"type": "string",
|
|
1523
1527
|
"required": true,
|
|
1524
1528
|
"description": "Model slug."
|
|
1525
1529
|
},
|
|
1526
|
-
"
|
|
1530
|
+
"vocal_gender": {
|
|
1527
1531
|
"type": "string",
|
|
1528
|
-
"
|
|
1532
|
+
"enum": [
|
|
1533
|
+
"male",
|
|
1534
|
+
"female"
|
|
1535
|
+
],
|
|
1536
|
+
"description": "Vocal gender."
|
|
1529
1537
|
},
|
|
1530
|
-
"
|
|
1531
|
-
"type": "
|
|
1532
|
-
"description": "
|
|
1538
|
+
"style_weight": {
|
|
1539
|
+
"type": "number",
|
|
1540
|
+
"description": "Style adherence weight (0-1)."
|
|
1533
1541
|
},
|
|
1534
|
-
"
|
|
1535
|
-
"type": "
|
|
1536
|
-
"description": "
|
|
1542
|
+
"weirdness_constraint": {
|
|
1543
|
+
"type": "number",
|
|
1544
|
+
"description": "Weirdness constraint (0-1)."
|
|
1537
1545
|
},
|
|
1538
|
-
"
|
|
1539
|
-
"type": "
|
|
1540
|
-
"description": "
|
|
1546
|
+
"audio_weight": {
|
|
1547
|
+
"type": "number",
|
|
1548
|
+
"description": "Audio weight (0-1)."
|
|
1541
1549
|
},
|
|
1542
1550
|
"task_id": {
|
|
1543
1551
|
"type": "string",
|
|
@@ -1551,65 +1559,57 @@
|
|
|
1551
1559
|
"type": "string",
|
|
1552
1560
|
"description": "Source audio URL to extend. Provide one of task_id, audio_id, audio_url, or upload_url."
|
|
1553
1561
|
},
|
|
1554
|
-
"persona_id": {
|
|
1555
|
-
"type": "string",
|
|
1556
|
-
"description": "Persona ID."
|
|
1557
|
-
},
|
|
1558
1562
|
"upload_url": {
|
|
1559
1563
|
"type": "string",
|
|
1560
1564
|
"description": "Uploaded source audio URL to extend. Provide one of task_id, audio_id, audio_url, or upload_url."
|
|
1561
1565
|
},
|
|
1562
|
-
"
|
|
1563
|
-
"type": "number",
|
|
1564
|
-
"description": "Seconds into the source to continue from. Required in custom parameter mode."
|
|
1565
|
-
},
|
|
1566
|
-
"audio_weight": {
|
|
1567
|
-
"type": "number",
|
|
1568
|
-
"description": "Audio weight (0-1)."
|
|
1569
|
-
},
|
|
1570
|
-
"callback_url": {
|
|
1566
|
+
"parameter_mode": {
|
|
1571
1567
|
"type": "string",
|
|
1572
|
-
"
|
|
1568
|
+
"enum": [
|
|
1569
|
+
"source",
|
|
1570
|
+
"custom"
|
|
1571
|
+
],
|
|
1572
|
+
"description": "Inherit the source track's parameters (source) or supply custom ones (custom)."
|
|
1573
1573
|
},
|
|
1574
1574
|
"instrumental": {
|
|
1575
1575
|
"type": "boolean",
|
|
1576
1576
|
"description": "When true, generate without vocals."
|
|
1577
1577
|
},
|
|
1578
|
-
"
|
|
1579
|
-
"enum": [
|
|
1580
|
-
"style",
|
|
1581
|
-
"voice"
|
|
1582
|
-
],
|
|
1578
|
+
"prompt": {
|
|
1583
1579
|
"type": "string",
|
|
1584
|
-
"description": "
|
|
1580
|
+
"description": "Extension brief. Cannot be combined with lyrics."
|
|
1585
1581
|
},
|
|
1586
|
-
"
|
|
1587
|
-
"type": "
|
|
1588
|
-
"description": "
|
|
1582
|
+
"lyrics": {
|
|
1583
|
+
"type": "string",
|
|
1584
|
+
"description": "Exact lyrics. Only allowed when extending uploaded audio in custom parameter mode."
|
|
1589
1585
|
},
|
|
1590
|
-
"
|
|
1591
|
-
"enum": [
|
|
1592
|
-
"male",
|
|
1593
|
-
"female"
|
|
1594
|
-
],
|
|
1586
|
+
"style": {
|
|
1595
1587
|
"type": "string",
|
|
1596
|
-
"description": "
|
|
1588
|
+
"description": "Style preset. Required in custom parameter mode."
|
|
1597
1589
|
},
|
|
1598
|
-
"
|
|
1590
|
+
"title": {
|
|
1599
1591
|
"type": "string",
|
|
1600
|
-
"description": "
|
|
1592
|
+
"description": "Song title. Required in custom parameter mode."
|
|
1601
1593
|
},
|
|
1602
|
-
"
|
|
1594
|
+
"continue_at": {
|
|
1595
|
+
"type": "number",
|
|
1596
|
+
"description": "Seconds into the source to continue from. Required in custom parameter mode."
|
|
1597
|
+
},
|
|
1598
|
+
"persona_id": {
|
|
1599
|
+
"type": "string",
|
|
1600
|
+
"description": "Persona ID."
|
|
1601
|
+
},
|
|
1602
|
+
"persona_type": {
|
|
1603
|
+
"type": "string",
|
|
1603
1604
|
"enum": [
|
|
1604
|
-
"
|
|
1605
|
-
"
|
|
1605
|
+
"style",
|
|
1606
|
+
"voice"
|
|
1606
1607
|
],
|
|
1607
|
-
"
|
|
1608
|
-
"description": "Inherit the source track's parameters (source) or supply custom ones (custom)."
|
|
1608
|
+
"description": "Persona type."
|
|
1609
1609
|
},
|
|
1610
|
-
"
|
|
1611
|
-
"type": "
|
|
1612
|
-
"description": "
|
|
1610
|
+
"negative_tags": {
|
|
1611
|
+
"type": "string",
|
|
1612
|
+
"description": "Styles to avoid."
|
|
1613
1613
|
}
|
|
1614
1614
|
}
|
|
1615
1615
|
}
|
|
@@ -1685,91 +1685,136 @@
|
|
|
1685
1685
|
],
|
|
1686
1686
|
"fields_by_model": {
|
|
1687
1687
|
"suno-v4": {
|
|
1688
|
+
"callback_url": {
|
|
1689
|
+
"type": "string",
|
|
1690
|
+
"description": "Webhook URL for async notifications."
|
|
1691
|
+
},
|
|
1688
1692
|
"model": {
|
|
1689
1693
|
"type": "string",
|
|
1690
1694
|
"required": true,
|
|
1691
1695
|
"description": "Model slug."
|
|
1692
1696
|
},
|
|
1693
|
-
"
|
|
1697
|
+
"vocal_gender": {
|
|
1694
1698
|
"type": "string",
|
|
1695
|
-
"
|
|
1699
|
+
"enum": [
|
|
1700
|
+
"male",
|
|
1701
|
+
"female"
|
|
1702
|
+
],
|
|
1703
|
+
"description": "Vocal gender."
|
|
1696
1704
|
},
|
|
1697
|
-
"
|
|
1705
|
+
"style_weight": {
|
|
1706
|
+
"type": "number",
|
|
1707
|
+
"description": "Style adherence weight (0-1)."
|
|
1708
|
+
},
|
|
1709
|
+
"weirdness_constraint": {
|
|
1710
|
+
"type": "number",
|
|
1711
|
+
"description": "Weirdness constraint (0-1)."
|
|
1712
|
+
},
|
|
1713
|
+
"audio_weight": {
|
|
1714
|
+
"type": "number",
|
|
1715
|
+
"description": "Audio weight (0-1)."
|
|
1716
|
+
},
|
|
1717
|
+
"vocal_mode": {
|
|
1698
1718
|
"type": "string",
|
|
1699
|
-
"
|
|
1719
|
+
"enum": [
|
|
1720
|
+
"auto_lyrics",
|
|
1721
|
+
"exact_lyrics",
|
|
1722
|
+
"instrumental"
|
|
1723
|
+
],
|
|
1724
|
+
"required": true,
|
|
1725
|
+
"description": "Vocal generation mode."
|
|
1726
|
+
},
|
|
1727
|
+
"prompt": {
|
|
1728
|
+
"type": "string",
|
|
1729
|
+
"description": "Song brief for automatic lyrics."
|
|
1700
1730
|
},
|
|
1701
1731
|
"lyrics": {
|
|
1702
1732
|
"type": "string",
|
|
1703
1733
|
"description": "Exact lyrics to sing."
|
|
1704
1734
|
},
|
|
1705
|
-
"
|
|
1735
|
+
"style": {
|
|
1706
1736
|
"type": "string",
|
|
1707
|
-
"description": "
|
|
1737
|
+
"description": "Music style."
|
|
1738
|
+
},
|
|
1739
|
+
"title": {
|
|
1740
|
+
"type": "string",
|
|
1741
|
+
"description": "Music title."
|
|
1742
|
+
},
|
|
1743
|
+
"negative_tags": {
|
|
1744
|
+
"type": "string",
|
|
1745
|
+
"description": "Styles to avoid."
|
|
1708
1746
|
},
|
|
1709
1747
|
"persona_id": {
|
|
1710
1748
|
"type": "string",
|
|
1711
1749
|
"description": "Persona ID."
|
|
1712
1750
|
},
|
|
1713
|
-
"
|
|
1751
|
+
"persona_type": {
|
|
1752
|
+
"type": "string",
|
|
1714
1753
|
"enum": [
|
|
1715
|
-
"
|
|
1716
|
-
"
|
|
1717
|
-
"instrumental"
|
|
1754
|
+
"style",
|
|
1755
|
+
"voice"
|
|
1718
1756
|
],
|
|
1719
|
-
"
|
|
1720
|
-
|
|
1721
|
-
|
|
1757
|
+
"description": "Persona type."
|
|
1758
|
+
},
|
|
1759
|
+
"duration_seconds": {
|
|
1760
|
+
"type": "integer",
|
|
1761
|
+
"description": "Duration in seconds."
|
|
1722
1762
|
},
|
|
1723
1763
|
"continue_at": {
|
|
1724
1764
|
"type": "number",
|
|
1725
1765
|
"description": "Timestamp in seconds to continue from."
|
|
1726
1766
|
},
|
|
1727
|
-
"
|
|
1728
|
-
"type": "
|
|
1729
|
-
|
|
1730
|
-
|
|
1767
|
+
"endpoint": {
|
|
1768
|
+
"type": "string"
|
|
1769
|
+
}
|
|
1770
|
+
},
|
|
1771
|
+
"suno-v4.5": {
|
|
1731
1772
|
"callback_url": {
|
|
1732
1773
|
"type": "string",
|
|
1733
1774
|
"description": "Webhook URL for async notifications."
|
|
1734
1775
|
},
|
|
1735
|
-
"
|
|
1736
|
-
"enum": [
|
|
1737
|
-
"style",
|
|
1738
|
-
"voice"
|
|
1739
|
-
],
|
|
1776
|
+
"model": {
|
|
1740
1777
|
"type": "string",
|
|
1741
|
-
"
|
|
1742
|
-
|
|
1743
|
-
"style_weight": {
|
|
1744
|
-
"type": "number",
|
|
1745
|
-
"description": "Style adherence weight (0-1)."
|
|
1778
|
+
"required": true,
|
|
1779
|
+
"description": "Model slug."
|
|
1746
1780
|
},
|
|
1747
1781
|
"vocal_gender": {
|
|
1782
|
+
"type": "string",
|
|
1748
1783
|
"enum": [
|
|
1749
1784
|
"male",
|
|
1750
1785
|
"female"
|
|
1751
1786
|
],
|
|
1752
|
-
"type": "string",
|
|
1753
1787
|
"description": "Vocal gender."
|
|
1754
1788
|
},
|
|
1755
|
-
"
|
|
1756
|
-
"type": "
|
|
1757
|
-
"description": "
|
|
1758
|
-
},
|
|
1759
|
-
"duration_seconds": {
|
|
1760
|
-
"type": "integer",
|
|
1761
|
-
"description": "Duration in seconds."
|
|
1789
|
+
"style_weight": {
|
|
1790
|
+
"type": "number",
|
|
1791
|
+
"description": "Style adherence weight (0-1)."
|
|
1762
1792
|
},
|
|
1763
1793
|
"weirdness_constraint": {
|
|
1764
1794
|
"type": "number",
|
|
1765
1795
|
"description": "Weirdness constraint (0-1)."
|
|
1766
|
-
}
|
|
1767
|
-
|
|
1768
|
-
|
|
1769
|
-
|
|
1796
|
+
},
|
|
1797
|
+
"audio_weight": {
|
|
1798
|
+
"type": "number",
|
|
1799
|
+
"description": "Audio weight (0-1)."
|
|
1800
|
+
},
|
|
1801
|
+
"vocal_mode": {
|
|
1770
1802
|
"type": "string",
|
|
1803
|
+
"enum": [
|
|
1804
|
+
"auto_lyrics",
|
|
1805
|
+
"exact_lyrics",
|
|
1806
|
+
"instrumental"
|
|
1807
|
+
],
|
|
1771
1808
|
"required": true,
|
|
1772
|
-
"description": "
|
|
1809
|
+
"description": "Vocal generation mode."
|
|
1810
|
+
},
|
|
1811
|
+
"prompt": {
|
|
1812
|
+
"type": "string",
|
|
1813
|
+
"description": "Song brief for automatic lyrics."
|
|
1814
|
+
},
|
|
1815
|
+
"lyrics": {
|
|
1816
|
+
"type": "string",
|
|
1817
|
+
"description": "Exact lyrics to sing."
|
|
1773
1818
|
},
|
|
1774
1819
|
"style": {
|
|
1775
1820
|
"type": "string",
|
|
@@ -1779,78 +1824,81 @@
|
|
|
1779
1824
|
"type": "string",
|
|
1780
1825
|
"description": "Music title."
|
|
1781
1826
|
},
|
|
1782
|
-
"
|
|
1783
|
-
"type": "string",
|
|
1784
|
-
"description": "Exact lyrics to sing."
|
|
1785
|
-
},
|
|
1786
|
-
"prompt": {
|
|
1827
|
+
"negative_tags": {
|
|
1787
1828
|
"type": "string",
|
|
1788
|
-
"description": "
|
|
1829
|
+
"description": "Styles to avoid."
|
|
1789
1830
|
},
|
|
1790
1831
|
"persona_id": {
|
|
1791
1832
|
"type": "string",
|
|
1792
1833
|
"description": "Persona ID."
|
|
1793
1834
|
},
|
|
1794
|
-
"
|
|
1835
|
+
"persona_type": {
|
|
1836
|
+
"type": "string",
|
|
1795
1837
|
"enum": [
|
|
1796
|
-
"
|
|
1797
|
-
"
|
|
1798
|
-
"instrumental"
|
|
1838
|
+
"style",
|
|
1839
|
+
"voice"
|
|
1799
1840
|
],
|
|
1800
|
-
"
|
|
1801
|
-
|
|
1802
|
-
|
|
1841
|
+
"description": "Persona type."
|
|
1842
|
+
},
|
|
1843
|
+
"duration_seconds": {
|
|
1844
|
+
"type": "integer",
|
|
1845
|
+
"description": "Duration in seconds."
|
|
1803
1846
|
},
|
|
1804
1847
|
"continue_at": {
|
|
1805
1848
|
"type": "number",
|
|
1806
1849
|
"description": "Timestamp in seconds to continue from."
|
|
1807
1850
|
},
|
|
1808
|
-
"
|
|
1809
|
-
"type": "
|
|
1810
|
-
|
|
1811
|
-
|
|
1851
|
+
"endpoint": {
|
|
1852
|
+
"type": "string"
|
|
1853
|
+
}
|
|
1854
|
+
},
|
|
1855
|
+
"suno-v4.5-all": {
|
|
1812
1856
|
"callback_url": {
|
|
1813
1857
|
"type": "string",
|
|
1814
1858
|
"description": "Webhook URL for async notifications."
|
|
1815
1859
|
},
|
|
1816
|
-
"
|
|
1817
|
-
"enum": [
|
|
1818
|
-
"style",
|
|
1819
|
-
"voice"
|
|
1820
|
-
],
|
|
1860
|
+
"model": {
|
|
1821
1861
|
"type": "string",
|
|
1822
|
-
"
|
|
1823
|
-
|
|
1824
|
-
"style_weight": {
|
|
1825
|
-
"type": "number",
|
|
1826
|
-
"description": "Style adherence weight (0-1)."
|
|
1862
|
+
"required": true,
|
|
1863
|
+
"description": "Model slug."
|
|
1827
1864
|
},
|
|
1828
1865
|
"vocal_gender": {
|
|
1866
|
+
"type": "string",
|
|
1829
1867
|
"enum": [
|
|
1830
1868
|
"male",
|
|
1831
1869
|
"female"
|
|
1832
1870
|
],
|
|
1833
|
-
"type": "string",
|
|
1834
1871
|
"description": "Vocal gender."
|
|
1835
1872
|
},
|
|
1836
|
-
"
|
|
1837
|
-
"type": "
|
|
1838
|
-
"description": "
|
|
1839
|
-
},
|
|
1840
|
-
"duration_seconds": {
|
|
1841
|
-
"type": "integer",
|
|
1842
|
-
"description": "Duration in seconds."
|
|
1873
|
+
"style_weight": {
|
|
1874
|
+
"type": "number",
|
|
1875
|
+
"description": "Style adherence weight (0-1)."
|
|
1843
1876
|
},
|
|
1844
1877
|
"weirdness_constraint": {
|
|
1845
1878
|
"type": "number",
|
|
1846
1879
|
"description": "Weirdness constraint (0-1)."
|
|
1847
|
-
}
|
|
1848
|
-
|
|
1849
|
-
|
|
1850
|
-
|
|
1880
|
+
},
|
|
1881
|
+
"audio_weight": {
|
|
1882
|
+
"type": "number",
|
|
1883
|
+
"description": "Audio weight (0-1)."
|
|
1884
|
+
},
|
|
1885
|
+
"vocal_mode": {
|
|
1851
1886
|
"type": "string",
|
|
1887
|
+
"enum": [
|
|
1888
|
+
"auto_lyrics",
|
|
1889
|
+
"exact_lyrics",
|
|
1890
|
+
"instrumental"
|
|
1891
|
+
],
|
|
1852
1892
|
"required": true,
|
|
1853
|
-
"description": "
|
|
1893
|
+
"description": "Vocal generation mode."
|
|
1894
|
+
},
|
|
1895
|
+
"prompt": {
|
|
1896
|
+
"type": "string",
|
|
1897
|
+
"description": "Song brief for automatic lyrics."
|
|
1898
|
+
},
|
|
1899
|
+
"lyrics": {
|
|
1900
|
+
"type": "string",
|
|
1901
|
+
"description": "Exact lyrics to sing."
|
|
1854
1902
|
},
|
|
1855
1903
|
"style": {
|
|
1856
1904
|
"type": "string",
|
|
@@ -1860,159 +1908,165 @@
|
|
|
1860
1908
|
"type": "string",
|
|
1861
1909
|
"description": "Music title."
|
|
1862
1910
|
},
|
|
1863
|
-
"
|
|
1864
|
-
"type": "string",
|
|
1865
|
-
"description": "Exact lyrics to sing."
|
|
1866
|
-
},
|
|
1867
|
-
"prompt": {
|
|
1911
|
+
"negative_tags": {
|
|
1868
1912
|
"type": "string",
|
|
1869
|
-
"description": "
|
|
1913
|
+
"description": "Styles to avoid."
|
|
1870
1914
|
},
|
|
1871
1915
|
"persona_id": {
|
|
1872
1916
|
"type": "string",
|
|
1873
1917
|
"description": "Persona ID."
|
|
1874
1918
|
},
|
|
1875
|
-
"
|
|
1919
|
+
"persona_type": {
|
|
1920
|
+
"type": "string",
|
|
1876
1921
|
"enum": [
|
|
1877
|
-
"
|
|
1878
|
-
"
|
|
1879
|
-
"instrumental"
|
|
1922
|
+
"style",
|
|
1923
|
+
"voice"
|
|
1880
1924
|
],
|
|
1881
|
-
"
|
|
1882
|
-
|
|
1883
|
-
|
|
1925
|
+
"description": "Persona type."
|
|
1926
|
+
},
|
|
1927
|
+
"duration_seconds": {
|
|
1928
|
+
"type": "integer",
|
|
1929
|
+
"description": "Duration in seconds."
|
|
1884
1930
|
},
|
|
1885
1931
|
"continue_at": {
|
|
1886
1932
|
"type": "number",
|
|
1887
1933
|
"description": "Timestamp in seconds to continue from."
|
|
1888
1934
|
},
|
|
1889
|
-
"
|
|
1890
|
-
"type": "
|
|
1891
|
-
|
|
1892
|
-
|
|
1935
|
+
"endpoint": {
|
|
1936
|
+
"type": "string"
|
|
1937
|
+
}
|
|
1938
|
+
},
|
|
1939
|
+
"suno-v4.5-plus": {
|
|
1893
1940
|
"callback_url": {
|
|
1894
1941
|
"type": "string",
|
|
1895
1942
|
"description": "Webhook URL for async notifications."
|
|
1896
1943
|
},
|
|
1897
|
-
"
|
|
1898
|
-
"enum": [
|
|
1899
|
-
"style",
|
|
1900
|
-
"voice"
|
|
1901
|
-
],
|
|
1944
|
+
"model": {
|
|
1902
1945
|
"type": "string",
|
|
1903
|
-
"
|
|
1904
|
-
|
|
1905
|
-
"style_weight": {
|
|
1906
|
-
"type": "number",
|
|
1907
|
-
"description": "Style adherence weight (0-1)."
|
|
1946
|
+
"required": true,
|
|
1947
|
+
"description": "Model slug."
|
|
1908
1948
|
},
|
|
1909
1949
|
"vocal_gender": {
|
|
1950
|
+
"type": "string",
|
|
1910
1951
|
"enum": [
|
|
1911
1952
|
"male",
|
|
1912
1953
|
"female"
|
|
1913
1954
|
],
|
|
1914
|
-
"type": "string",
|
|
1915
1955
|
"description": "Vocal gender."
|
|
1916
1956
|
},
|
|
1917
|
-
"
|
|
1918
|
-
"type": "
|
|
1919
|
-
"description": "
|
|
1920
|
-
},
|
|
1921
|
-
"duration_seconds": {
|
|
1922
|
-
"type": "integer",
|
|
1923
|
-
"description": "Duration in seconds."
|
|
1957
|
+
"style_weight": {
|
|
1958
|
+
"type": "number",
|
|
1959
|
+
"description": "Style adherence weight (0-1)."
|
|
1924
1960
|
},
|
|
1925
1961
|
"weirdness_constraint": {
|
|
1926
1962
|
"type": "number",
|
|
1927
1963
|
"description": "Weirdness constraint (0-1)."
|
|
1928
|
-
}
|
|
1929
|
-
},
|
|
1930
|
-
"suno-v4.5-plus": {
|
|
1931
|
-
"model": {
|
|
1932
|
-
"type": "string",
|
|
1933
|
-
"required": true,
|
|
1934
|
-
"description": "Model slug."
|
|
1935
|
-
},
|
|
1936
|
-
"style": {
|
|
1937
|
-
"type": "string",
|
|
1938
|
-
"description": "Music style."
|
|
1939
1964
|
},
|
|
1940
|
-
"
|
|
1941
|
-
"type": "
|
|
1942
|
-
"description": "
|
|
1965
|
+
"audio_weight": {
|
|
1966
|
+
"type": "number",
|
|
1967
|
+
"description": "Audio weight (0-1)."
|
|
1943
1968
|
},
|
|
1944
|
-
"
|
|
1969
|
+
"vocal_mode": {
|
|
1945
1970
|
"type": "string",
|
|
1946
|
-
"
|
|
1971
|
+
"enum": [
|
|
1972
|
+
"auto_lyrics",
|
|
1973
|
+
"exact_lyrics",
|
|
1974
|
+
"instrumental"
|
|
1975
|
+
],
|
|
1976
|
+
"required": true,
|
|
1977
|
+
"description": "Vocal generation mode."
|
|
1947
1978
|
},
|
|
1948
1979
|
"prompt": {
|
|
1949
1980
|
"type": "string",
|
|
1950
1981
|
"description": "Song brief for automatic lyrics."
|
|
1951
1982
|
},
|
|
1952
|
-
"
|
|
1983
|
+
"lyrics": {
|
|
1953
1984
|
"type": "string",
|
|
1954
|
-
"description": "
|
|
1985
|
+
"description": "Exact lyrics to sing."
|
|
1955
1986
|
},
|
|
1956
|
-
"
|
|
1957
|
-
"enum": [
|
|
1958
|
-
"auto_lyrics",
|
|
1959
|
-
"exact_lyrics",
|
|
1960
|
-
"instrumental"
|
|
1961
|
-
],
|
|
1987
|
+
"style": {
|
|
1962
1988
|
"type": "string",
|
|
1963
|
-
"
|
|
1964
|
-
"description": "Vocal generation mode."
|
|
1989
|
+
"description": "Music style."
|
|
1965
1990
|
},
|
|
1966
|
-
"
|
|
1967
|
-
"type": "
|
|
1968
|
-
"description": "
|
|
1991
|
+
"title": {
|
|
1992
|
+
"type": "string",
|
|
1993
|
+
"description": "Music title."
|
|
1969
1994
|
},
|
|
1970
|
-
"
|
|
1971
|
-
"type": "
|
|
1972
|
-
"description": "
|
|
1995
|
+
"negative_tags": {
|
|
1996
|
+
"type": "string",
|
|
1997
|
+
"description": "Styles to avoid."
|
|
1973
1998
|
},
|
|
1974
|
-
"
|
|
1999
|
+
"persona_id": {
|
|
1975
2000
|
"type": "string",
|
|
1976
|
-
"description": "
|
|
2001
|
+
"description": "Persona ID."
|
|
1977
2002
|
},
|
|
1978
2003
|
"persona_type": {
|
|
2004
|
+
"type": "string",
|
|
1979
2005
|
"enum": [
|
|
1980
2006
|
"style",
|
|
1981
2007
|
"voice"
|
|
1982
2008
|
],
|
|
1983
|
-
"type": "string",
|
|
1984
2009
|
"description": "Persona type."
|
|
1985
2010
|
},
|
|
1986
|
-
"
|
|
2011
|
+
"duration_seconds": {
|
|
2012
|
+
"type": "integer",
|
|
2013
|
+
"description": "Duration in seconds."
|
|
2014
|
+
},
|
|
2015
|
+
"continue_at": {
|
|
1987
2016
|
"type": "number",
|
|
1988
|
-
"description": "
|
|
2017
|
+
"description": "Timestamp in seconds to continue from."
|
|
2018
|
+
},
|
|
2019
|
+
"endpoint": {
|
|
2020
|
+
"type": "string"
|
|
2021
|
+
}
|
|
2022
|
+
},
|
|
2023
|
+
"suno-v5": {
|
|
2024
|
+
"callback_url": {
|
|
2025
|
+
"type": "string",
|
|
2026
|
+
"description": "Webhook URL for async notifications."
|
|
2027
|
+
},
|
|
2028
|
+
"model": {
|
|
2029
|
+
"type": "string",
|
|
2030
|
+
"required": true,
|
|
2031
|
+
"description": "Model slug."
|
|
1989
2032
|
},
|
|
1990
2033
|
"vocal_gender": {
|
|
2034
|
+
"type": "string",
|
|
1991
2035
|
"enum": [
|
|
1992
2036
|
"male",
|
|
1993
2037
|
"female"
|
|
1994
2038
|
],
|
|
1995
|
-
"type": "string",
|
|
1996
2039
|
"description": "Vocal gender."
|
|
1997
2040
|
},
|
|
1998
|
-
"
|
|
1999
|
-
"type": "
|
|
2000
|
-
"description": "
|
|
2001
|
-
},
|
|
2002
|
-
"duration_seconds": {
|
|
2003
|
-
"type": "integer",
|
|
2004
|
-
"description": "Duration in seconds."
|
|
2041
|
+
"style_weight": {
|
|
2042
|
+
"type": "number",
|
|
2043
|
+
"description": "Style adherence weight (0-1)."
|
|
2005
2044
|
},
|
|
2006
2045
|
"weirdness_constraint": {
|
|
2007
2046
|
"type": "number",
|
|
2008
2047
|
"description": "Weirdness constraint (0-1)."
|
|
2009
|
-
}
|
|
2010
|
-
|
|
2011
|
-
|
|
2012
|
-
|
|
2048
|
+
},
|
|
2049
|
+
"audio_weight": {
|
|
2050
|
+
"type": "number",
|
|
2051
|
+
"description": "Audio weight (0-1)."
|
|
2052
|
+
},
|
|
2053
|
+
"vocal_mode": {
|
|
2013
2054
|
"type": "string",
|
|
2055
|
+
"enum": [
|
|
2056
|
+
"auto_lyrics",
|
|
2057
|
+
"exact_lyrics",
|
|
2058
|
+
"instrumental"
|
|
2059
|
+
],
|
|
2014
2060
|
"required": true,
|
|
2015
|
-
"description": "
|
|
2061
|
+
"description": "Vocal generation mode."
|
|
2062
|
+
},
|
|
2063
|
+
"prompt": {
|
|
2064
|
+
"type": "string",
|
|
2065
|
+
"description": "Song brief for automatic lyrics."
|
|
2066
|
+
},
|
|
2067
|
+
"lyrics": {
|
|
2068
|
+
"type": "string",
|
|
2069
|
+
"description": "Exact lyrics to sing."
|
|
2016
2070
|
},
|
|
2017
2071
|
"style": {
|
|
2018
2072
|
"type": "string",
|
|
@@ -2022,152 +2076,116 @@
|
|
|
2022
2076
|
"type": "string",
|
|
2023
2077
|
"description": "Music title."
|
|
2024
2078
|
},
|
|
2025
|
-
"
|
|
2026
|
-
"type": "string",
|
|
2027
|
-
"description": "Exact lyrics to sing."
|
|
2028
|
-
},
|
|
2029
|
-
"prompt": {
|
|
2079
|
+
"negative_tags": {
|
|
2030
2080
|
"type": "string",
|
|
2031
|
-
"description": "
|
|
2081
|
+
"description": "Styles to avoid."
|
|
2032
2082
|
},
|
|
2033
2083
|
"persona_id": {
|
|
2034
2084
|
"type": "string",
|
|
2035
2085
|
"description": "Persona ID."
|
|
2036
2086
|
},
|
|
2037
|
-
"
|
|
2087
|
+
"persona_type": {
|
|
2088
|
+
"type": "string",
|
|
2038
2089
|
"enum": [
|
|
2039
|
-
"
|
|
2040
|
-
"
|
|
2041
|
-
"instrumental"
|
|
2090
|
+
"style",
|
|
2091
|
+
"voice"
|
|
2042
2092
|
],
|
|
2043
|
-
"
|
|
2044
|
-
|
|
2045
|
-
|
|
2093
|
+
"description": "Persona type."
|
|
2094
|
+
},
|
|
2095
|
+
"duration_seconds": {
|
|
2096
|
+
"type": "integer",
|
|
2097
|
+
"description": "Duration in seconds."
|
|
2046
2098
|
},
|
|
2047
2099
|
"continue_at": {
|
|
2048
2100
|
"type": "number",
|
|
2049
2101
|
"description": "Timestamp in seconds to continue from."
|
|
2050
2102
|
},
|
|
2051
|
-
"
|
|
2052
|
-
"type": "
|
|
2053
|
-
|
|
2054
|
-
|
|
2103
|
+
"endpoint": {
|
|
2104
|
+
"type": "string"
|
|
2105
|
+
}
|
|
2106
|
+
},
|
|
2107
|
+
"suno-v5.5": {
|
|
2055
2108
|
"callback_url": {
|
|
2056
2109
|
"type": "string",
|
|
2057
2110
|
"description": "Webhook URL for async notifications."
|
|
2058
2111
|
},
|
|
2059
|
-
"
|
|
2060
|
-
"enum": [
|
|
2061
|
-
"style",
|
|
2062
|
-
"voice"
|
|
2063
|
-
],
|
|
2112
|
+
"model": {
|
|
2064
2113
|
"type": "string",
|
|
2065
|
-
"
|
|
2066
|
-
|
|
2067
|
-
"style_weight": {
|
|
2068
|
-
"type": "number",
|
|
2069
|
-
"description": "Style adherence weight (0-1)."
|
|
2114
|
+
"required": true,
|
|
2115
|
+
"description": "Model slug."
|
|
2070
2116
|
},
|
|
2071
2117
|
"vocal_gender": {
|
|
2118
|
+
"type": "string",
|
|
2072
2119
|
"enum": [
|
|
2073
2120
|
"male",
|
|
2074
2121
|
"female"
|
|
2075
2122
|
],
|
|
2076
|
-
"type": "string",
|
|
2077
2123
|
"description": "Vocal gender."
|
|
2078
2124
|
},
|
|
2079
|
-
"
|
|
2080
|
-
"type": "
|
|
2081
|
-
"description": "
|
|
2082
|
-
},
|
|
2083
|
-
"duration_seconds": {
|
|
2084
|
-
"type": "integer",
|
|
2085
|
-
"description": "Duration in seconds."
|
|
2125
|
+
"style_weight": {
|
|
2126
|
+
"type": "number",
|
|
2127
|
+
"description": "Style adherence weight (0-1)."
|
|
2086
2128
|
},
|
|
2087
2129
|
"weirdness_constraint": {
|
|
2088
2130
|
"type": "number",
|
|
2089
2131
|
"description": "Weirdness constraint (0-1)."
|
|
2090
|
-
}
|
|
2091
|
-
},
|
|
2092
|
-
"suno-v5.5": {
|
|
2093
|
-
"model": {
|
|
2094
|
-
"type": "string",
|
|
2095
|
-
"required": true,
|
|
2096
|
-
"description": "Model slug."
|
|
2097
2132
|
},
|
|
2098
|
-
"
|
|
2133
|
+
"audio_weight": {
|
|
2134
|
+
"type": "number",
|
|
2135
|
+
"description": "Audio weight (0-1)."
|
|
2136
|
+
},
|
|
2137
|
+
"vocal_mode": {
|
|
2099
2138
|
"type": "string",
|
|
2100
|
-
"
|
|
2139
|
+
"enum": [
|
|
2140
|
+
"auto_lyrics",
|
|
2141
|
+
"exact_lyrics",
|
|
2142
|
+
"instrumental"
|
|
2143
|
+
],
|
|
2144
|
+
"required": true,
|
|
2145
|
+
"description": "Vocal generation mode."
|
|
2101
2146
|
},
|
|
2102
|
-
"
|
|
2147
|
+
"prompt": {
|
|
2103
2148
|
"type": "string",
|
|
2104
|
-
"description": "
|
|
2149
|
+
"description": "Song brief for automatic lyrics."
|
|
2105
2150
|
},
|
|
2106
2151
|
"lyrics": {
|
|
2107
2152
|
"type": "string",
|
|
2108
2153
|
"description": "Exact lyrics to sing."
|
|
2109
2154
|
},
|
|
2110
|
-
"
|
|
2155
|
+
"style": {
|
|
2111
2156
|
"type": "string",
|
|
2112
|
-
"description": "
|
|
2157
|
+
"description": "Music style."
|
|
2113
2158
|
},
|
|
2114
|
-
"
|
|
2159
|
+
"title": {
|
|
2115
2160
|
"type": "string",
|
|
2116
|
-
"description": "
|
|
2161
|
+
"description": "Music title."
|
|
2117
2162
|
},
|
|
2118
|
-
"
|
|
2119
|
-
"enum": [
|
|
2120
|
-
"auto_lyrics",
|
|
2121
|
-
"exact_lyrics",
|
|
2122
|
-
"instrumental"
|
|
2123
|
-
],
|
|
2163
|
+
"negative_tags": {
|
|
2124
2164
|
"type": "string",
|
|
2125
|
-
"
|
|
2126
|
-
"description": "Vocal generation mode."
|
|
2127
|
-
},
|
|
2128
|
-
"continue_at": {
|
|
2129
|
-
"type": "number",
|
|
2130
|
-
"description": "Timestamp in seconds to continue from."
|
|
2131
|
-
},
|
|
2132
|
-
"audio_weight": {
|
|
2133
|
-
"type": "number",
|
|
2134
|
-
"description": "Audio weight (0-1)."
|
|
2165
|
+
"description": "Styles to avoid."
|
|
2135
2166
|
},
|
|
2136
|
-
"
|
|
2167
|
+
"persona_id": {
|
|
2137
2168
|
"type": "string",
|
|
2138
|
-
"description": "
|
|
2169
|
+
"description": "Persona ID."
|
|
2139
2170
|
},
|
|
2140
2171
|
"persona_type": {
|
|
2172
|
+
"type": "string",
|
|
2141
2173
|
"enum": [
|
|
2142
2174
|
"style",
|
|
2143
2175
|
"voice"
|
|
2144
2176
|
],
|
|
2145
|
-
"type": "string",
|
|
2146
2177
|
"description": "Persona type."
|
|
2147
2178
|
},
|
|
2148
|
-
"style_weight": {
|
|
2149
|
-
"type": "number",
|
|
2150
|
-
"description": "Style adherence weight (0-1)."
|
|
2151
|
-
},
|
|
2152
|
-
"vocal_gender": {
|
|
2153
|
-
"enum": [
|
|
2154
|
-
"male",
|
|
2155
|
-
"female"
|
|
2156
|
-
],
|
|
2157
|
-
"type": "string",
|
|
2158
|
-
"description": "Vocal gender."
|
|
2159
|
-
},
|
|
2160
|
-
"negative_tags": {
|
|
2161
|
-
"type": "string",
|
|
2162
|
-
"description": "Styles to avoid."
|
|
2163
|
-
},
|
|
2164
2179
|
"duration_seconds": {
|
|
2165
2180
|
"type": "integer",
|
|
2166
2181
|
"description": "Duration in seconds."
|
|
2167
2182
|
},
|
|
2168
|
-
"
|
|
2183
|
+
"continue_at": {
|
|
2169
2184
|
"type": "number",
|
|
2170
|
-
"description": "
|
|
2185
|
+
"description": "Timestamp in seconds to continue from."
|
|
2186
|
+
},
|
|
2187
|
+
"endpoint": {
|
|
2188
|
+
"type": "string"
|
|
2171
2189
|
}
|
|
2172
2190
|
}
|
|
2173
2191
|
}
|
|
@@ -2181,17 +2199,26 @@
|
|
|
2181
2199
|
],
|
|
2182
2200
|
"fields_by_model": {
|
|
2183
2201
|
"suno-v5": {
|
|
2184
|
-
"
|
|
2202
|
+
"prompt": {
|
|
2185
2203
|
"type": "string",
|
|
2186
2204
|
"required": true,
|
|
2187
|
-
"description": "
|
|
2205
|
+
"description": "Sound description (max 500 characters)."
|
|
2188
2206
|
},
|
|
2189
|
-
"
|
|
2207
|
+
"model": {
|
|
2190
2208
|
"type": "string",
|
|
2191
2209
|
"required": true,
|
|
2192
|
-
"description": "
|
|
2210
|
+
"description": "Model slug."
|
|
2211
|
+
},
|
|
2212
|
+
"sound_loop": {
|
|
2213
|
+
"type": "boolean",
|
|
2214
|
+
"description": "When true, produce loopable audio. Default false."
|
|
2215
|
+
},
|
|
2216
|
+
"sound_tempo": {
|
|
2217
|
+
"type": "integer",
|
|
2218
|
+
"description": "Tempo in BPM (1-300)."
|
|
2193
2219
|
},
|
|
2194
2220
|
"sound_key": {
|
|
2221
|
+
"type": "string",
|
|
2195
2222
|
"enum": [
|
|
2196
2223
|
"Cm",
|
|
2197
2224
|
"C#m",
|
|
@@ -2218,38 +2245,38 @@
|
|
|
2218
2245
|
"A#",
|
|
2219
2246
|
"B"
|
|
2220
2247
|
],
|
|
2221
|
-
"type": "string",
|
|
2222
2248
|
"description": "Musical key."
|
|
2223
2249
|
},
|
|
2224
|
-
"sound_loop": {
|
|
2225
|
-
"type": "boolean",
|
|
2226
|
-
"description": "When true, produce loopable audio. Default false."
|
|
2227
|
-
},
|
|
2228
2250
|
"grab_lyrics": {
|
|
2229
2251
|
"type": "boolean",
|
|
2230
2252
|
"description": "Capture lyric subtitles. Default false."
|
|
2231
2253
|
},
|
|
2232
|
-
"sound_tempo": {
|
|
2233
|
-
"type": "integer",
|
|
2234
|
-
"description": "Tempo in BPM (1-300)."
|
|
2235
|
-
},
|
|
2236
2254
|
"callback_url": {
|
|
2237
2255
|
"type": "string",
|
|
2238
2256
|
"description": "Webhook URL for async notifications."
|
|
2239
2257
|
}
|
|
2240
2258
|
},
|
|
2241
2259
|
"suno-v5.5": {
|
|
2242
|
-
"
|
|
2260
|
+
"prompt": {
|
|
2243
2261
|
"type": "string",
|
|
2244
2262
|
"required": true,
|
|
2245
|
-
"description": "
|
|
2263
|
+
"description": "Sound description (max 500 characters)."
|
|
2246
2264
|
},
|
|
2247
|
-
"
|
|
2265
|
+
"model": {
|
|
2248
2266
|
"type": "string",
|
|
2249
2267
|
"required": true,
|
|
2250
|
-
"description": "
|
|
2268
|
+
"description": "Model slug."
|
|
2269
|
+
},
|
|
2270
|
+
"sound_loop": {
|
|
2271
|
+
"type": "boolean",
|
|
2272
|
+
"description": "When true, produce loopable audio. Default false."
|
|
2273
|
+
},
|
|
2274
|
+
"sound_tempo": {
|
|
2275
|
+
"type": "integer",
|
|
2276
|
+
"description": "Tempo in BPM (1-300)."
|
|
2251
2277
|
},
|
|
2252
2278
|
"sound_key": {
|
|
2279
|
+
"type": "string",
|
|
2253
2280
|
"enum": [
|
|
2254
2281
|
"Cm",
|
|
2255
2282
|
"C#m",
|
|
@@ -2276,21 +2303,12 @@
|
|
|
2276
2303
|
"A#",
|
|
2277
2304
|
"B"
|
|
2278
2305
|
],
|
|
2279
|
-
"type": "string",
|
|
2280
2306
|
"description": "Musical key."
|
|
2281
2307
|
},
|
|
2282
|
-
"sound_loop": {
|
|
2283
|
-
"type": "boolean",
|
|
2284
|
-
"description": "When true, produce loopable audio. Default false."
|
|
2285
|
-
},
|
|
2286
2308
|
"grab_lyrics": {
|
|
2287
2309
|
"type": "boolean",
|
|
2288
2310
|
"description": "Capture lyric subtitles. Default false."
|
|
2289
2311
|
},
|
|
2290
|
-
"sound_tempo": {
|
|
2291
|
-
"type": "integer",
|
|
2292
|
-
"description": "Tempo in BPM (1-300)."
|
|
2293
|
-
},
|
|
2294
2312
|
"callback_url": {
|
|
2295
2313
|
"type": "string",
|
|
2296
2314
|
"description": "Webhook URL for async notifications."
|