Skip to main content
ArtEmotion
3D

Tripo3D v2.5 Image → 3D

Credit-based pricing. Supports reference images.

Tripo3D v2.5 Image → 3D preview
Output
3D mesh
Aspect ratio
1:1
Resolution
1024

Inputs

  • Reference image (required)

Example prompt

A heroic space marine in heavy gold and charcoal exo-suit armor with glowing orange energy cells
Try this prompt →
LLM-ready

API & LLM schema

Exact request contract for this model. Agents can fetch it from /api/v1/models?id=tripo3d/tripo/v2.5/image-to-3d.

POST/api/v1/generate22 fields · 3 required
FieldTypeRequirementContract
model_idconstantRequiredArtEmotion model identifier.
extraobjectOptionalModel-specific settings may also be nested here.
max_creditsnumberOptionalReject before submission if the estimated list price exceeds this cap. · Range: 1–…
webhook_urlstringOptionalFormat: uri
webhook_secretstringOptionalOptional model input.
folder_idstringOptionalOptional model input.
promptstringRequiredOptional model input.
texturebooleanOptionalGenerate textures for the model. Disable to get a base model without any textures. · Default: true
texture_qualitystringOptionalTexture resolution tier. Detailed and Extreme produce higher-resolution textures at extra cost. · Allowed: standard, detailed, extreme · Default: standard
pbrbooleanOptionalGenerate PBR (metallic/roughness) materials. When enabled, texture is treated as enabled. · Default: true
orientationstringOptionalAuto-rotate the mesh to match the viewing angle of the input image. Only takes effect when texture is enabled. · Allowed: default, align_image · Default: default
texture_alignmentstringOptionalDetermines the prioritization of texture alignment in the 3D model. · Allowed: original_image, geometry · Default: original_image
auto_sizebooleanOptionalAutomatically scale the model to real-world dimensions (meters). · Default: false
quadbooleanOptionalEnable quad mesh output. Forces FBX output. If face_limit is not set, defaults to 10000. · Default: false
smart_low_polybooleanOptionalGenerate low-poly meshes with hand-crafted topology. Works best on simple inputs; face_limit should be 1000-20000. · Default: false
generate_partsbooleanOptionalGenerate segmented, editable model parts. Requires texture, PBR, and quad to be disabled. · Default: false
texture_seednumberOptionalRandom seed for texture generation. Using the same seed produces identical textures.
face_limitnumberOptionalLimits the number of faces on the output model (max 500,000 for v2.5). If not set, adaptively determined. · Range: 1–500000
model_seedintegerOptionalRandom seed for model geometry generation.
aspect_ratiostringOptionalAllowed: 1:1
resolutionstringOptionalAllowed: 1024
reference_image_urlstringRequiredFormat: uri
Minimal request example
{
  "model_id": "tripo3d/tripo/v2.5/image-to-3d",
  "prompt": "A heroic space marine in heavy gold and charcoal exo-suit armor with glowing orange energy cells",
  "reference_image_url": "https://example.com/reference_image"
}
Raw JSON Schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.artemotion.ai/api/v1/models?id=tripo3d%2Ftripo%2Fv2.5%2Fimage-to-3d",
  "title": "Tripo3D v2.5 Image → 3D generation request",
  "description": "Request body accepted by POST /api/v1/generate for tripo3d/tripo/v2.5/image-to-3d.",
  "type": "object",
  "properties": {
    "model_id": {
      "type": "string",
      "const": "tripo3d/tripo/v2.5/image-to-3d",
      "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"
    },
    "texture": {
      "title": "Texture",
      "description": "Generate textures for the model. Disable to get a base model without any textures.",
      "default": true,
      "type": "boolean"
    },
    "texture_quality": {
      "title": "Texture Quality",
      "description": "Texture resolution tier. Detailed and Extreme produce higher-resolution textures at extra cost.",
      "default": "standard",
      "type": "string",
      "enum": [
        "standard",
        "detailed",
        "extreme"
      ]
    },
    "pbr": {
      "title": "PBR Maps",
      "description": "Generate PBR (metallic/roughness) materials. When enabled, texture is treated as enabled.",
      "default": true,
      "type": "boolean"
    },
    "orientation": {
      "title": "Orientation",
      "description": "Auto-rotate the mesh to match the viewing angle of the input image. Only takes effect when texture is enabled.",
      "default": "default",
      "type": "string",
      "enum": [
        "default",
        "align_image"
      ]
    },
    "texture_alignment": {
      "title": "Texture Alignment",
      "description": "Determines the prioritization of texture alignment in the 3D model.",
      "default": "original_image",
      "type": "string",
      "enum": [
        "original_image",
        "geometry"
      ]
    },
    "auto_size": {
      "title": "Auto Size",
      "description": "Automatically scale the model to real-world dimensions (meters).",
      "default": false,
      "type": "boolean"
    },
    "quad": {
      "title": "Quad Mesh",
      "description": "Enable quad mesh output. Forces FBX output. If face_limit is not set, defaults to 10000.",
      "default": false,
      "type": "boolean"
    },
    "smart_low_poly": {
      "title": "Smart Low Poly",
      "description": "Generate low-poly meshes with hand-crafted topology. Works best on simple inputs; face_limit should be 1000-20000.",
      "default": false,
      "type": "boolean"
    },
    "generate_parts": {
      "title": "Generate Parts",
      "description": "Generate segmented, editable model parts. Requires texture, PBR, and quad to be disabled.",
      "default": false,
      "type": "boolean"
    },
    "texture_seed": {
      "title": "Texture Seed",
      "description": "Random seed for texture generation. Using the same seed produces identical textures.",
      "type": "number",
      "multipleOf": 1
    },
    "face_limit": {
      "title": "Face Limit",
      "description": "Limits the number of faces on the output model (max 500,000 for v2.5). If not set, adaptively determined.",
      "type": "number",
      "minimum": 1,
      "maximum": 500000,
      "multipleOf": 1
    },
    "model_seed": {
      "title": "Seed",
      "description": "Random seed for model geometry generation.",
      "type": "integer"
    },
    "aspect_ratio": {
      "type": "string",
      "enum": [
        "1:1"
      ]
    },
    "resolution": {
      "type": "string",
      "enum": [
        "1024"
      ]
    },
    "reference_image_url": {
      "type": "string",
      "format": "uri"
    }
  },
  "required": [
    "model_id",
    "prompt",
    "reference_image_url"
  ],
  "additionalProperties": false
}

FAQ

How much does Tripo3D v2.5 Image → 3D 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 Tripo3D v2.5 Image → 3D fails?

Yes — failed generations are never charged. The credits are released back to your balance automatically.

Can I call Tripo3D v2.5 Image → 3D from the API?

Yes. Use POST /api/v1/generate with model_id: "tripo3d/tripo/v2.5/image-to-3d". 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 Tripo3D v2.5 Image → 3D?

Start now →

No commitment. New accounts get 50 free credits on signup. See pricing.