生成歌词
curl --request POST \
--url https://api.maxapi.ai/suno/v1/v3.0/lyrics \
--header 'Content-Type: application/json' \
--data '{}'import requests
url = "https://api.maxapi.ai/suno/v1/v3.0/lyrics"
payload = {}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({})
};
fetch('https://api.maxapi.ai/suno/v1/v3.0/lyrics', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.maxapi.ai/suno/v1/v3.0/lyrics"
payload := strings.NewReader("{}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.maxapi.ai/suno/v1/v3.0/lyrics")
.header("Content-Type", "application/json")
.body("{}")
.asString();{
"code": 200,
"data": {
"task_id": "56ea8da3-8507-4118-9f1e-111111111111"
},
"message": "success"
}POST
https://api.maxapi.ai
/
suno
/
v1
/
v3.0
/
lyrics
生成歌词
curl --request POST \
--url https://api.maxapi.ai/suno/v1/v3.0/lyrics \
--header 'Content-Type: application/json' \
--data '{}'import requests
url = "https://api.maxapi.ai/suno/v1/v3.0/lyrics"
payload = {}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({})
};
fetch('https://api.maxapi.ai/suno/v1/v3.0/lyrics', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.maxapi.ai/suno/v1/v3.0/lyrics"
payload := strings.NewReader("{}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.maxapi.ai/suno/v1/v3.0/lyrics")
.header("Content-Type", "application/json")
.body("{}")
.asString();{
"code": 200,
"data": {
"task_id": "56ea8da3-8507-4118-9f1e-111111111111"
},
"message": "success"
}