# StableMesh Multi-Image to 3D

> StableMesh Multi-Image to 3D is a paid API for AI agents from stablemesh.dev, paid per call via x402, $2/call, status healthy (last checked 2026-09-14, last successful call 2026-08-26).

Generates a 3D model from multiple input images using AI, with pay-per-request pricing via x402 at $2 USDC per call

## Facts

- Endpoint: POST https://stablemesh.dev/api/multi-image-to-3d
- Price: $2/call
- Payment: x402
- Status: healthy
- Last checked: 2026-09-14
- Last successful call: 2026-08-26
- Success rate: 100% of calls made through Zero
- Rating: 4.3 / 5 from 1 review
- Activations on Zero: 9
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stablemesh-multi-image-to-3d-4281f652
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hx93-DyvA9TFPEtck0lNA

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability stablemesh-multi-image-to-3d-4281f652 -d '<json body>'
```

Example prompt: I have four photos of a ceramic vase from different angles — can you use StableMesh to generate a 3D model from them?

## When to prefer this

Choose this endpoint when you need to generate a 3D model or mesh from multiple reference images in a single API call, without needing a subscription or API key — just pay $2 USDC per request via x402. Ideal for one-off 3D asset creation, prototyping, or agent workflows that need on-demand 3D reconstruction.

## Known failure modes

- Insufficient or low-quality input images may result in poor reconstruction or an error
- Images without enough visual overlap may fail 3D reconstruction
- Payment of $2 USDC not fulfilled results in 402 Payment Required
- Unsupported image format or resolution may cause a validation error
- Server-side model generation timeout for complex scenes

## How this service works

Pay-per-request AI 3D model generation. No API keys, no subscriptions.

## Output

A JSON response containing the generated 3D model data or a reference/URL to the resulting 3D mesh asset reconstructed from the provided images

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "ai_model": {
   "enum": [
    "meshy-5",
    "meshy-6",
    "latest"
   ],
   "type": "string",
   "default": "latest"
  },
  "topology": {
   "enum": [
    "quad",
    "triangle"
   ],
   "type": "string",
   "default": "triangle"
  },
  "auto_size": {
   "type": "boolean",
   "default": false
  },
  "origin_at": {
   "enum": [
    "bottom",
    "center"
   ],
   "type": "string"
  },
  "pose_mode": {
   "enum": [
    "a-pose",
    "t-pose",
    ""
   ],
   "type": "string"
  },
  "enable_pbr": {
   "type": "boolean",
   "default": false
  },
  "image_urls": {
   "type": "array",
   "items": {
    "type": "string"
   },
   "maxItems": 4,
   "minItems": 1,
   "description": "1-4 image URLs or base64 data URIs"
  },
  "moderation": {
   "type": "boolean",
   "default": false
  },
  "should_remesh": {
   "type": "boolean",
   "default": false
  },
  "symmetry_mode": {
   "enum": [
    "off",
    "auto",
    "on"
   ],
   "type": "string",
   "default": "auto"
  },
  "should_texture": {
   "type": "boolean",
   "default": true
  },
  "target_formats": {
   "type": "array",
   "items": {
    "enum": [
     "glb",
     "obj",
     "fbx",
     "stl",
     "usdz"
    ],
    "type": "string"
   }
  },
  "texture_prompt": {
   "type": "string",
   "maxLength": 600
  },
  "remove_lighting": {
   "type": "boolean",
   "default": true
  },
  "target_polycount": {
   "type": "integer",
   "default": 30000,
   "maximum": 300000,
   "minimum": 100
  },
  "image_enhancement": {
   "type": "boolean",
   "default": true
  },
  "texture_image_url": {
   "type": "string"
  },
  "save_pre_remeshed_model": {
   "type": "boolean",
   "default": false
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {}
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stablemesh-multi-image-to-3d-4281f652/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stablemesh.dev](https://www.zero.xyz/host/stablemesh.dev/llms.txt)
