Remeshing | Overview
AI remeshing API overview. Optimize 3D model topology with triangle or quad output. Three density levels for game-ready, print-ready, or web-ready meshes.
Overview
The Remeshing API lets you restructure 3D model geometry using AI-powered smart topology. Improve mesh topology, control polygon type (triangles or quads), adjust mesh density, and convert between output formats. Ideal for preparing models for games, AR, 3D printing, and production pipelines.
Available Providers
| Provider | Capabilities | Credits |
|---|---|---|
| Tencent Hunyuan | AI-powered smart topology. Supports GLB and OBJ input. Triangle or quad output. High/medium/low density levels. Output formats: OBJ, FBX, STL, USDZ. | 100 credits |
How It Works
Submit a topology request with a model URL and your desired settings. Then poll the status endpoint for results.
Request
# 1. Submit a topology request
curl -X POST https://api.3daistudio.com/v1/3d-models/tencent/topology/ \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"file_url": "https://example.com/model.glb",
"file_type": "GLB",
"polygon_type": "quadrilateral",
"face_level": "medium"
}'
# 2. Poll for results
curl https://api.3daistudio.com/v1/generation-request/TASK_ID/status/ \
-H "Authorization: Bearer YOUR_API_KEY"Errors
Common errors for remeshing endpoints.
| Status | Error Code | Description |
|---|---|---|
| 402 | insufficient_credits | Not enough credits. Top up your wallet. |
| 429 | rate_limited | Rate limit exceeded. Wait and retry. |
| 400 | validation_failed | Missing or invalid parameters. |