Audio

SeaCloud provides various audio generation models including Mureka, MiniMax, and more. Each model has its own dedicated API endpoint and parameters.

How to Use Audio Generation Models

1

Visit the Models page

Select the "Audio" type.

2

Browse and select a model

Choose an audio generation model that fits your needs.

3

View the API example

Open the "API" tab on the model details page to see the complete curl example and parameter description.

4

Copy and modify the example

Copy the example code and replace with your API Key and the parameters you need.

Example: Using Mureka Song Generator

Here is an example of generating a song using Mureka Song Generator:

curl
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"
        }
      }
    ]
  }'

Note: Different audio generation models have different parameters. For example, Mureka Song Generator above uses lyrics, model, and vocal_id, while other models may use different parameter names and values. Please check the specific model API documentation for supported parameters.

Last updated