보컬, 가사, 풍부한 악기 구성을 갖춘 최대 5분 길이의 완성곡을 생성합니다. 14종 구조 태그, 장르별 특성을 반영하는 스타일-aware 믹싱, 오케스트라·전통 악기까지 확장된 악기 라이브러리를 지원합니다.
콘솔의 Playground에서 별도 코드 없이 이 모델을 즉시 테스트할 수 있어요
이 모델의 사용법을 Claude, ChatGPT 등에 복사
curl -X POST "https://api.core.today/v1/predictions" \
-H "Content-Type: application/json" \
-H "X-API-Key: cdt_your_api_key" \
-d '{
"model": "minimax/music-2.5",
"input": {
"prompt": "Folk country, fingerpicked acoustic guitar, warm male vocal, nostalgic, intimate studio feel",
"lyrics": "[Verse]\nOld screen door don't close right anymore\nCreaks like my knees on a cold morning\n\n[Chorus]\nBut time don't ask permission\nAnd rivers don't run backwards, friend\n\n[Outro]\n(Harmonica fades out)",
"audio_format": "mp3",
"bitrate": 256000,
"sample_rate": 44100
}
}'| 파라미터 | 타입 | 필수 | 기본값 | 설명 |
|---|---|---|---|---|
prompt | string | No | - | 스타일 설명 (최대 2,000자). 장르, 분위기, 보컬 묘사, BPM, 악기, 시대 레퍼런스, 프로덕션 순으로 구체적으로 쓰세요 — 'retro'보다 '1980s Minneapolis sound'가 효과적입니다 |
lyrics | string | Yes | - | 가사 (1-3,500자, 필수). \n으로 줄바꿈, \n\n으로 쉼을 넣습니다. 구조 태그 14종: [Intro], [Verse], [Pre Chorus], [Chorus], [Post Chorus], [Hook], [Drop], [Bridge], [Solo], [Inst], [Interlude], [Break], [Transition], [Outro] |
sample_rate | integer | No | 44100 | 생성 음악의 샘플레이트 16000240003200044100 |
bitrate | integer | No | 256000 | 생성 음악의 비트레이트 3200064000128000256000 |
audio_format | string | No | mp3 | 출력 형식. 프로덕션 작업에는 wav 권장 mp3wavpcm |
POST /v1/predictions 요청 시 사용되는 공통 파라미터입니다.
| 파라미터 | 타입 | 필수 | 기본값 | 설명 |
|---|---|---|---|---|
model | string | Yes | - | 모델 식별자 |
input | object | Yes | - | 위 테이블의 모델별 파라미터를 포함하는 객체 |
output_folder | string | No | - | 결과물 저장 폴더 경로 (최대 256자, '..' 사용 불가) |
webhook_url | string | No | - | 완료 시 호출할 Webhook URL |
is_public | boolean | No | false | true 시 결과물을 영구 공개 URL로도 제공 |
구조화된 가사로 만드는 향수 어린 포크 컨트리 곡
curl -X POST "https://api.core.today/v1/predictions" \
-H "Content-Type: application/json" \
-H "X-API-Key: cdt_your_api_key" \
-d '{
"model": "minimax/music-2.5",
"input": {
"prompt": "Folk country, fingerpicked acoustic guitar, warm male vocal, nostalgic, intimate studio feel",
"lyrics": "[Verse]\nOld screen door don't close right anymore\nCreaks like my knees on a cold morning\n\n[Chorus]\nBut time don't ask permission\nAnd rivers don't run backwards, friend\n\n[Outro]\n(Harmonica fades out)",
"audio_format": "mp3",
"bitrate": 256000,
"sample_rate": 44100
}
}'[Inst] 태그와 괄호 지시문으로 만드는 연주곡
curl -X POST "https://api.core.today/v1/predictions" \
-H "Content-Type: application/json" \
-H "X-API-Key: cdt_your_api_key" \
-d '{
"model": "minimax/music-2.5",
"input": {
"prompt": "Cinematic orchestral, 70 BPM, sweeping strings, gentle piano, emotional film score",
"lyrics": "[Intro]\n(Soft piano)\n\n[Inst]\n(Strings swell)\n\n[Outro]\n(Piano fades)",
"audio_format": "wav"
}
}'