Skip to main content
ArtEmotion
3D

Meshy-6 Multi-Image → 3D

Credit-based pricing. Supports reference images.

Meshy-6 Multi-Image → 3D preview
Output
3D mesh
Aspect ratio
1:1
Resolution
1024

Inputs

  • Reference image (required)

Example prompt

A crystal elf archer with prismatic iridescent armor, translucent skin, and a glowing crystalline longbow
Try this prompt →
LLM-ready

API & LLM schema

Exact request contract for this model. Agents can fetch it from /api/v1/models?id=fal-ai/meshy/v6/multi-image-to-3d.

POST/api/v1/generate25 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.
enable_riggingbooleanOptionalAutomatically rig the generated model as a humanoid character. Best results with humanoid characters. · Default: false
pose_modestringOptionalPose mode for the generated model. · Allowed: a-pose, t-pose, · Default:
should_texturebooleanOptionalWhether to generate textures. False provides mesh without textures for 5 credits, True adds texture generation for additional 10 credits. · Default: true
texture_promptstringOptionalText prompt to guide the texturing process. Requires should_texture to be true.
should_remeshbooleanOptionalWhether to enable the remesh phase. · Default: true
topologystringOptionalMesh topology. Quad for smooth surfaces, Triangle for detailed geometry. · Allowed: quad, triangle · Default: triangle
enable_animationbooleanOptionalApply an animation preset to the rigged model. Requires enable_rigging to be true. · Default: false
target_polycountnumberOptionalTarget number of polygons in the generated model. · Default: 30000 · Range: 100–300000
rigging_height_metersnumberOptionalApproximate height of the character in meters. Only used when enable_rigging is true. · Default: 1.7
symmetry_modestringOptionalControls symmetry behavior during model generation. · Allowed: off, auto, on · Default: auto
animation_action_idintegerOptionalSelect an available motion from Meshy's live library. For generation models, enable Add Animation to apply it. · Default: 92 · Range: 0–…
enable_pbrbooleanOptionalGenerate PBR maps (metallic, roughness, normal) in addition to base color. Requires should_texture to be true. · Default: false
hd_texturebooleanOptionalGenerate 4K base color texture instead of the default 1K. Requires should_texture to be true. · Default: false
enable_safety_checkerbooleanOptionalRun the input safety checker before processing. · Default: true
texture_image_urlstringOptional2D image to guide the texturing process. Requires should_texture to be true.
aspect_ratiostringOptionalAllowed: 1:1
resolutionstringOptionalAllowed: 1024
reference_image_urlsarray<string>RequiredItems: 0–4
Minimal request example
{
  "model_id": "fal-ai/meshy/v6/multi-image-to-3d",
  "prompt": "A crystal elf archer with prismatic iridescent armor, translucent skin, and a glowing crystalline longbow",
  "reference_image_urls": []
}
Raw JSON Schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.artemotion.ai/api/v1/models?id=fal-ai%2Fmeshy%2Fv6%2Fmulti-image-to-3d",
  "title": "Meshy-6 Multi-Image → 3D generation request",
  "description": "Request body accepted by POST /api/v1/generate for fal-ai/meshy/v6/multi-image-to-3d.",
  "type": "object",
  "properties": {
    "model_id": {
      "type": "string",
      "const": "fal-ai/meshy/v6/multi-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"
    },
    "enable_rigging": {
      "title": "Enable Rigging",
      "description": "Automatically rig the generated model as a humanoid character. Best results with humanoid characters.",
      "default": false,
      "type": "boolean"
    },
    "pose_mode": {
      "title": "Pose Mode",
      "description": "Pose mode for the generated model.",
      "default": "",
      "type": "string",
      "enum": [
        "a-pose",
        "t-pose",
        ""
      ]
    },
    "should_texture": {
      "title": "Texture",
      "description": "Whether to generate textures. False provides mesh without textures for 5 credits, True adds texture generation for additional 10 credits.",
      "default": true,
      "type": "boolean"
    },
    "texture_prompt": {
      "title": "Texture Prompt",
      "description": "Text prompt to guide the texturing process. Requires should_texture to be true.",
      "type": "string"
    },
    "should_remesh": {
      "title": "Remesh",
      "description": "Whether to enable the remesh phase.",
      "default": true,
      "type": "boolean"
    },
    "topology": {
      "title": "Topology",
      "description": "Mesh topology. Quad for smooth surfaces, Triangle for detailed geometry.",
      "default": "triangle",
      "type": "string",
      "enum": [
        "quad",
        "triangle"
      ]
    },
    "enable_animation": {
      "title": "Enable Animation",
      "description": "Apply an animation preset to the rigged model. Requires enable_rigging to be true.",
      "default": false,
      "type": "boolean"
    },
    "target_polycount": {
      "title": "Target Polycount",
      "description": "Target number of polygons in the generated model.",
      "default": 30000,
      "type": "number",
      "minimum": 100,
      "maximum": 300000,
      "multipleOf": 1
    },
    "rigging_height_meters": {
      "title": "Rigging Height (m)",
      "description": "Approximate height of the character in meters. Only used when enable_rigging is true.",
      "default": 1.7,
      "type": "number"
    },
    "symmetry_mode": {
      "title": "Symmetry Mode",
      "description": "Controls symmetry behavior during model generation.",
      "default": "auto",
      "type": "string",
      "enum": [
        "off",
        "auto",
        "on"
      ]
    },
    "animation_action_id": {
      "title": "Animation",
      "description": "Select an available motion from Meshy's live library. For generation models, enable Add Animation to apply it.",
      "default": 92,
      "type": "integer",
      "minimum": 0,
      "multipleOf": 1
    },
    "enable_pbr": {
      "title": "Enable PBR",
      "description": "Generate PBR maps (metallic, roughness, normal) in addition to base color. Requires should_texture to be true.",
      "default": false,
      "type": "boolean"
    },
    "hd_texture": {
      "title": "HD Texture (4K)",
      "description": "Generate 4K base color texture instead of the default 1K. Requires should_texture to be true.",
      "default": false,
      "type": "boolean"
    },
    "enable_safety_checker": {
      "title": "Enable Safety Checker",
      "description": "Run the input safety checker before processing.",
      "default": true,
      "type": "boolean"
    },
    "texture_image_url": {
      "title": "Texture Guide Image",
      "description": "2D image to guide the texturing process. Requires should_texture to be true.",
      "type": "string"
    },
    "aspect_ratio": {
      "type": "string",
      "enum": [
        "1:1"
      ]
    },
    "resolution": {
      "type": "string",
      "enum": [
        "1024"
      ]
    },
    "reference_image_urls": {
      "type": "array",
      "items": {
        "type": "string",
        "format": "uri"
      },
      "maxItems": 4
    }
  },
  "required": [
    "model_id",
    "prompt",
    "reference_image_urls"
  ],
  "additionalProperties": false
}

FAQ

How much does Meshy-6 Multi-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 Meshy-6 Multi-Image → 3D fails?

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

Can I call Meshy-6 Multi-Image → 3D from the API?

Yes. Use POST /api/v1/generate with model_id: "fal-ai/meshy/v6/multi-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 Meshy-6 Multi-Image → 3D?

Start now →

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