Uploading Assets
Upload images and files for use in Kimara workflows.
Some workflows require input assets (images, videos, audio, or other files). Upload them before submitting a run.
Upload an Asset
curl -X POST https://kimara.ai/api/v1/assets \
-H "Authorization: Bearer kim_YOUR_API_KEY" \
-F "file=@/path/to/your/image.png"The response includes the asset ID you'll reference in your run inputs.
Using Uploaded Assets
Pass the asset ID in your run inputs for IMAGE, VIDEO, or AUDIO type fields:
curl -X POST https://kimara.ai/api/v1/apps/YOUR_APP_VERSION_ID \
-H "Authorization: Bearer kim_YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"inputs": {"1:image": "ASSET_UUID_HERE"}}'