curl --request POST \
--url https://api.poyo.ai/api/generate/submit \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"model": "tripo3d-p1-text-to-3d",
"input": {
"prompt": "A miniature pirate ship with tattered sails, cannon ports, and wooden deck details",
"texture": true,
"face_limit": 12000
}
}
'{
"code": 200,
"data": {
"task_id": "<string>",
"status": "not_started",
"created_time": "2023-11-07T05:31:56Z"
}
}Tripo3D
Tripo3D P1 API
Clean low-poly Tripo3D P1 text-to-3D and image-to-3D generation
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": "tripo3d-p1-text-to-3d",
"input": {
"prompt": "A miniature pirate ship with tattered sails, cannon ports, and wooden deck details",
"texture": true,
"face_limit": 12000
}
}
'{
"code": 200,
"data": {
"task_id": "<string>",
"status": "not_started",
"created_time": "2023-11-07T05:31:56Z"
}
}- After submission, a
task_idwill be returned. If you provided acallback_url, PoYo sends a POST request when the task becomesfinishedorfailed. - You can retrieve results through the unified Query Task Status endpoint.
Tripo3D P1 API
Tripo3D P1 supports text-to-3D and single image-to-3D generation for clean, lightweight 3D assets.Available Models
- tripo3d-p1-text-to-3d - Generate a low-poly 3D model from a prompt
- tripo3d-p1-image-to-3d - Generate a low-poly 3D model from one object image
Required Parameters
- model:
tripo3d-p1-text-to-3dortripo3d-p1-image-to-3d - input.prompt: Required for
tripo3d-p1-text-to-3d - input.image_urls: Required for
tripo3d-p1-image-to-3d; use exactly one item
Optional Parameters
- face_limit: Target face count, from
48to20000 - texture: Whether to generate textures. Default is
true - model_seed: Optional integer seed for reproducible geometry
- callback_url: Optional webhook URL for task completion notification
Pricing
- Without textures: 56 credits
- With textures: 70 credits
Output
The task result is returned as a file list. Available items may include:model_glbthumbnail- entries from
model_urls, such asglb,base_model, andpbr_model, when available
label, file_url, file_type, format, content_type, file_name, and file_size when available.
Notes
- P1 is best suited to lightweight, clean-mesh assets where lower polygon budgets are useful.
- The API returns asynchronous task status. Poll the unified task status endpoint or use
callback_url.
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
application/json
