endpoint
POST

/api/animation-library/image-to-3d

Build an image-to-3D reconstruction recipe

auth: publicbase https://app.nz
Request
curl -sX POST https://app.nz/api/animation-library/image-to-3d \
  -H "Content-Type: application/json" \
  -d '{}'

Open animation and spatial asset API

Search the public motion, VFX, terrain, procedural-object, and image-to-3D index by stable ID. Agents can inspect source and license metadata, download portable JSON recipes, fetch OBJ meshes, build deterministic terrain, or prepare an image reconstruction job without parsing the web gallery.

Search and download parameters
qstringSubstring matched against stable id, name, description, and tags.
kindenumpose, motion, vfx, terrain, object, or image3d.
formatenumjson for every asset; obj for terrain, object, and image3d.
target_polycountintegerRequested reconstruction budget, clamped to 500,000.
Agent search → inspect → download
# Find downloadable image-to-3D assets
curl -s 'https://app.nz/api/animation-library?q=product&kind=image3d&limit=10' | jq

# Download portable geometry
curl -L 'https://app.nz/api/animation-library/image3d-sneaker/download?format=obj' -o sneaker.obj

# Equivalent CLI flow
app animation search product --kind image3d
app animation download image3d-sneaker --format obj --output sneaker.obj

# MCP tools: search_animation_library, download_animation_asset,
# create_image_to_3d_recipe, generate_terrain_recipe