Upload a mesh
Bring your own GLB into Thrixel to run Auto-fix, Edit, or Detailer on it.
Bring your own GLB file into Thrixel so you can run Auto-fix, Edit, or Detailer operations on it. Multipart form upload, max 100 MB.
Upload an existing model
POST /api/v1/upload/submit
Requires API key.
Request Body
| Name | Type | Description |
|---|---|---|
glb_file | file (required) | Binary .glb file (Content-Type: multipart/form-data). |
task | string | Optional label describing the uploaded model. Max 2000 chars. |
project_id | string | Assign to a project. |
Example Request
POST /upload/submit
curl -X POST https://api.thrixel.com/api/v1/upload/submit \
-H "Authorization: Bearer sk-thrixel-<YOUR_KEY>" \
-F "glb_file=@./my_model.glb" \
-F "task=hand-sculpted base mesh"