Skip to main content
POST
/
asset
/
generate
start a new AI 3D generation task
curl --request POST \
  --url http://localhost:3917/asset/generate \
  --header 'Content-Type: application/json' \
  --data '
{
  "prompt": "<string>",
  "provider": "<string>",
  "quality": "<string>"
}
'
{
  "status": "pending",
  "task_id": "gen_1"
}

Body

application/json
prompt
string
required
provider
string
quality
string | null

Response

200 - application/json

Generation task queued; returns the task_id to poll, or an error.