
Output
3D mesh
LLM-ready
API & LLM schema
Exact request contract for this model. Agents can fetch it from /api/v1/models?id=tripo3d/convert.
POST
/api/v1/generate19 fields · 2 required| Field | Type | Requirement | Contract |
|---|---|---|---|
model_id | constant | Required | ArtEmotion model identifier. |
extra | object | Optional | Model-specific settings may also be nested here. |
max_credits | number | Optional | Reject before submission if the estimated list price exceeds this cap. · Range: 1–… |
webhook_url | string | Optional | Format: uri |
webhook_secret | string | Optional | Optional model input. |
folder_id | string | Optional | Optional model input. |
prompt | string | Optional | Optional model input. |
original_model_task_id | string | Required | Pick a completed Tripo 3D generation to convert. |
format | string | Optional | Target export format. · Allowed: GLTF, FBX, OBJ, STL, USDZ, 3MF · Default: GLTF |
quad | boolean | Optional | Convert triangular mesh to quad-dominant topology. · Default: false |
face_limit | number | Optional | Maximum polygon count. 0 = no limit. · Default: 10000 · Range: 500–100000 |
bake | boolean | Optional | Combine advanced material effects into the base textures. · Default: true |
with_animation | boolean | Optional | Include skeletal and animation data in the export. · Default: true |
flatten_bottom | boolean | Optional | Flatten the underside of the model for stable placement. · Default: false |
texture_size | number | Optional | Texture resolution in pixels (128–4096). · Default: 2048 · Range: 128–4096 |
export_orientation | string | Optional | Forward axis orientation for the exported model. · Allowed: +x, -x, +y, -y · Default: +x |
fbx_preset | string | Optional | FBX only — optimize for the target application. · Allowed: blender, 3dsmax, mixamo · Default: blender |
pack_uv | boolean | Optional | Pack UV islands into a single texture atlas. · Default: false |
pivot_to_center_bottom | boolean | Optional | Move the model pivot to the center bottom for easier placement. · Default: false |
Minimal request example
{
"model_id": "tripo3d/convert",
"original_model_task_id": "your_original_model_task_id"
}Raw JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://www.artemotion.ai/api/v1/models?id=tripo3d%2Fconvert",
"title": "Tripo Format Convert generation request",
"description": "Request body accepted by POST /api/v1/generate for tripo3d/convert.",
"type": "object",
"properties": {
"model_id": {
"type": "string",
"const": "tripo3d/convert",
"description": "ArtEmotion model identifier."
},
"extra": {
"type": "object",
"additionalProperties": true,
"description": "Model-specific settings may also be nested here."
},
"max_credits": {
"type": "number",
"minimum": 1,
"description": "Reject before submission if the estimated list price exceeds this cap."
},
"webhook_url": {
"type": "string",
"format": "uri",
"maxLength": 2048
},
"webhook_secret": {
"type": "string",
"maxLength": 512
},
"folder_id": {
"type": "string"
},
"prompt": {
"type": "string"
},
"original_model_task_id": {
"title": "Source Model",
"description": "Pick a completed Tripo 3D generation to convert.",
"type": "string"
},
"format": {
"title": "Output Format",
"description": "Target export format.",
"default": "GLTF",
"type": "string",
"enum": [
"GLTF",
"FBX",
"OBJ",
"STL",
"USDZ",
"3MF"
]
},
"quad": {
"title": "Quad Mesh",
"description": "Convert triangular mesh to quad-dominant topology.",
"default": false,
"type": "boolean"
},
"face_limit": {
"title": "Face Limit",
"description": "Maximum polygon count. 0 = no limit.",
"default": 10000,
"type": "number",
"minimum": 500,
"maximum": 100000
},
"bake": {
"title": "Bake Textures",
"description": "Combine advanced material effects into the base textures.",
"default": true,
"type": "boolean"
},
"with_animation": {
"title": "Include Animation",
"description": "Include skeletal and animation data in the export.",
"default": true,
"type": "boolean"
},
"flatten_bottom": {
"title": "Flatten Bottom",
"description": "Flatten the underside of the model for stable placement.",
"default": false,
"type": "boolean"
},
"texture_size": {
"title": "Texture Size",
"description": "Texture resolution in pixels (128–4096).",
"default": 2048,
"type": "number",
"minimum": 128,
"maximum": 4096
},
"export_orientation": {
"title": "Export Orientation",
"description": "Forward axis orientation for the exported model.",
"default": "+x",
"type": "string",
"enum": [
"+x",
"-x",
"+y",
"-y"
]
},
"fbx_preset": {
"title": "FBX Target App",
"description": "FBX only — optimize for the target application.",
"default": "blender",
"type": "string",
"enum": [
"blender",
"3dsmax",
"mixamo"
]
},
"pack_uv": {
"title": "Pack UVs",
"description": "Pack UV islands into a single texture atlas.",
"default": false,
"type": "boolean"
},
"pivot_to_center_bottom": {
"title": "Pivot at Base",
"description": "Move the model pivot to the center bottom for easier placement.",
"default": false,
"type": "boolean"
}
},
"required": [
"model_id",
"original_model_task_id"
],
"additionalProperties": false
}FAQ
How much does Tripo Format Convert cost on ArtEmotion?
Credit-based pricing. You pay in ArtEmotion credits — every plan and top-up converts USD to credits at a fixed rate.
Do I get my credits back if Tripo Format Convert fails?
Yes — failed generations are never charged. The credits are released back to your balance automatically.
Can I call Tripo Format Convert from the API?
Yes. Use POST /api/v1/generate with model_id: "tripo3d/convert". See the API reference for the full schema.
Where are my generations stored?
Every output is saved to your personal Library. You can export or delete everything any time from Privacy & deletion.
Ready to generate with Tripo Format Convert?
Start now →No commitment. New accounts get 50 free credits on signup. See pricing.