PicoBerry API + MCP정식 출시

API Reference

Download & export

Export a finished asset to GLB, FBX, or OBJ.

Endpoint

POST /v1/assets/{id}/download

Export a finished asset to a format and get a short-lived signed download URL.

Request body

{ "format": "fbx", "texturePreset": "unity", "name": "chest" }
FieldTypeRequiredDescription
formatenumYesglb, fbx, or obj.
texturePresetenumNostandard (default) or unity (URP/Built-in channel split, ships a .meta). For fbx/obj.
namestringNoBase filename. Defaults to model.

Response

{
  "success": true,
  "data": {
    "url": "https://...signed",
    "format": "fbx",
    "archive": true,
    "contentType": "application/zip",
    "filename": "chest.zip"
  }
}

glb is a single file. fbx and obj are ZIP bundles — they pack the model

  • textures (+ a .meta for the Unity preset) as a .zip; unzip before importing.