Skip to main content

Download a character

Download a character file in FBX or GLB format using the character bundle endpoint.

Step 1: Get the character ID

Use the character ID from your upload response or list it via the API.

Step 2: Download the character file

API_KEY="{{apiKey}}"
CHARACTER_ID="your-character-id"

# FBX
curl -L "https://uthana.com/motion/bundle/$CHARACTER_ID/character.fbx" \
  -u $API_KEY: \
  -o character.fbx

# GLB
curl -L "https://uthana.com/motion/bundle/$CHARACTER_ID/character.glb" \
  -u $API_KEY: \
  -o character.glb