Auto-rig a humanoid 3D character
Auto-rig a humanoid 3D character. $0.20. Input models must be under 300,000 faces; run /api/remesh first when using high-poly generated models, then pass the completed remesh task ID.
200000 (raw units)
price
14
calls / 30d
2
unique payers
2026-09-04
updated
Provider
stablemesh.dev · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xfBcA05073748AB9605370732dd70D7A14A0b7146",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "200000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {},
"bodyType": "json",
"method": "POST",
"type": "http"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"height_meters": {
"default": 1.7,
"description": "Character height in meters",
"type": "number"
},
"input_task_id": {
"description": "ID of a completed Meshy task to rig. Rigging only accepts models under 300,000 faces; if the source model may exceed that limit, run /api/remesh first and pass the completed remesh task ID here.",
"type": "string"
},
"model_url": {
"description": "Public URL or data URI to a GLB file under 300,000 faces. If the model may exceed 300,000 faces, reduce it with /api/remesh before rigging.",
"type": "string"
},
"texture_image_url": {
"description": "UV-unwrapped base color texture (PNG)",
"type": "string"
}
},
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST",
"PUT",
"PATCH"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://stablemesh.dev/api/rigging" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://stablemesh.dev/api/rigging");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://stablemesh.dev/api/rigging")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/11895.json, and this resource appears in /discovery/resources and /discovery/search.