Skip to main content
POST
/
v1
/
3d
/
generations
Generate 3D model
curl --request POST \
  --url https://api.siray.ai/v1/3d/generations \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "model": "tencent/hunyuan3d-v2.5-rapid-text-to-3d",
  "pbr_enable": true,
  "prompt": "example_value",
  "texture_enable": true
}
'
{
  "code": "success",
  "data": {
    "task_id": "<string>"
  },
  "message": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication using API key

Body

application/json

Request payload

Request format for 3D model generation

model
enum<string>
required

Model name to use for the request

Available options:
tencent/hunyuan3d-v2.5-rapid-text-to-3d
prompt
string
required

Text prompt for generation

pbr_enable
boolean
default:true

Whether to enable PBR (Physically Based Rendering) material output

texture_enable
boolean
default:true

Whether to enable texture generation

Response

200 - application/json

Successful response

Standard async task creation response

code
string
required

Status code returned by the service

Example:

"success"

data
object
required

Response payload containing task details

message
string
required

Additional information about the request result