endpoint
GET
/api/animation-library
Search the indexed asset manifest with q, kind, and limit
auth: publicbase https://app.nz
Request
curl -s "https://app.nz/api/animation-library"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_recipeMore in Open animation and spatial asset API
GET
/api/animation-library/index.jsonFetch the complete cacheable index for offline agent searchGET/api/animation-library/{id}/download?format=jsonDownload a recipe; use format=obj for terrain and 3D objectsPOST/api/animation-library/terrainBuild a deterministic terrain recipePOST/api/animation-library/image-to-3dBuild an image-to-3D reconstruction recipePOST/v1/3d/generationsRun an authenticated 3D generation job from image or text input