Audio
SeaCloud provides various audio generation models including Mureka, MiniMax, and more. Each model has its own dedicated API endpoint and parameters.
Important: Each audio generation model has its own API endpoint and parameter structure. Please visit the Models page to see the calling method for specific models.
How to Use Audio Generation Models
3
Example: Using Mureka Song Generator
Here is an example of generating a song using Mureka Song Generator:
curl --location 'https://cloud.seaart.ai/api/v1/mureka_song_generator/generate' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"model": "mureka_song_generator",
"input": [
{
"params": {
"lyrics": "Verse 1: Walking down the street, feeling the beat",
"model": "mureka-7.5",
"n": 2,
"prompt": "Pop song with upbeat melody",
"reference_id": "example_reference_id",
"vocal_id": "example_vocal_id"
}
}
]
}'Recommended: Visit the Models page to see all available audio generation models, each with complete API examples.
Last updated