curl --request POST \
--url https://api.poyo.ai/api/generate/submit \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"model": "boost-music-style",
"callback_url": "https://your-domain.com/callback",
"input": {
"content": "Pop, Mysterious"
}
}
'{
"code": 200,
"data": {
"task_id": "task-unified-1757165031-uyujaw3d",
"status": "not_started",
"created_time": "2025-11-12T10:30:00"
}
}Suno AI
Boost Music Style
Generate enhanced music style descriptions using AI
POST
/
api
/
generate
/
submit
curl --request POST \
--url https://api.poyo.ai/api/generate/submit \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"model": "boost-music-style",
"callback_url": "https://your-domain.com/callback",
"input": {
"content": "Pop, Mysterious"
}
}
'{
"code": 200,
"data": {
"task_id": "task-unified-1757165031-uyujaw3d",
"status": "not_started",
"created_time": "2025-11-12T10:30:00"
}
}- After submission, a
task_idwill be returned. If you provided acallback_url, when the task status becomesfinishedorfailed, a POST request will be sent to thecallback_url. - Regardless of whether
callback_urlis provided, you can retrieve the response result through the unified Query Music Detail endpoint.
Usage Guide
- This endpoint generates enhanced music style descriptions based on your input
- Provide concise keywords describing genre, mood, or musical characteristics
- The AI will expand and enrich your style description for better music generation results
Parameter Details
content(required): A brief description of the desired music style- Use comma-separated keywords for best results
- Include genre (Pop, Jazz, Rock), mood (Mysterious, Upbeat), or instruments (Piano, Guitar)
Developer Notes
- Use the generated style descriptions with the Generate Music endpoint for better results
- Keep input descriptions concise and clear for optimal enhancement
Authorizations
All API endpoints require Bearer Token authentication
Get your API Key:
Visit the API Key Management Page to get your API Key
Add it to the request header:
Authorization: Bearer PoYo_API_KEY
Body
application/json
API model identifier.
Must be boost-music-style for this endpoint.
Available options:
boost-music-style Example:
"boost-music-style"
Input parameters for style generation
Show child attributes
Show child attributes
Webhook callback URL for result notifications
Example:
"https://your-domain.com/callback"
