Skip to main content

Introduction to Suno

Suno is currently one of the most powerful AI music generation platforms. Through Ace Data Cloud’s Suno API, you can generate high-quality music with simple API calls.

API Endpoints

EndpointFunction
POST /suno/audiosGenerate music (main endpoint)
POST /suno/lyricsGenerate lyrics
POST /suno/personaManage singer styles
POST /suno/wavGet WAV format
POST /suno/mp4Get MP4 format
POST /suno/tasksQuery task status

Basic Generation

Text Description Generation

import requests

response = requests.post(
    "https://api.acedata.cloud/suno/audios",
    headers={
        "Authorization": "Bearer YOUR_API_TOKEN",
        "Content-Type": "application/json",
    },
    json={
        "action": "generate",
        "prompt": "A cheerful pop song about summer vacation",
        "model": "chirp-v5",
    },
)
print(response.json())

Custom Lyrics Generation

response = requests.post(
    "https://api.acedata.cloud/suno/audios",
    headers={
        "Authorization": "Bearer YOUR_API_TOKEN",
        "Content-Type": "application/json",
    },
    json={
        "action": "generate",
        "model": "chirp-v5",
        "custom": True,
        "lyric": "[Verse]\n夏日的阳光洒满了海岸\n微风中传来浪花的声音\n\n[Chorus]\n让我们一起去远方\n追逐那自由的梦想",
        "style": "pop upbeat",
        "title": "夏日冒险",
    },
)

Advanced Features

Song Continuation

response = requests.post(
    "https://api.acedata.cloud/suno/audios",
    headers={
        "Authorization": "Bearer YOUR_API_TOKEN",
        "Content-Type": "application/json",
    },
    json={
        "action": "extend",
        "audio_id": "your-existing-audio-id",
        "model": "chirp-v5",
    },
)

Generate Lyrics

response = requests.post(
    "https://api.acedata.cloud/suno/lyrics",
    headers={
        "Authorization": "Bearer YOUR_API_TOKEN",
        "Content-Type": "application/json",
    },
    json={
        "prompt": "Write a song about winter",
    },
)

Available Models

ModelFeatures
chirp-v5Latest version, best sound quality
v4-5-plusEnhanced version
v4-5Stable version
v4Classic version

Summary

The Suno API provides comprehensive music generation capabilities through the Ace Data Cloud platform. Whether it’s simple text generation or custom lyric creation, it can be achieved with just a few lines of code. Visit platform.acedata.cloud to register and experience it.