Skip to content

Download result

View Markdown llms-full.txt

Download the result of a completed SimReady conversion as a ZIP archive. Use the conversion-job ID from a direct 3D upload or from Asset Composer’s conversion_job_id; composition IDs do not work on this endpoint.

MethodGET
Path/api/conversions/:id/result
Returnsstreaming application/zip
ParamValuesDefaultNotes
formatusd · mjcf · allallusd = USD + textures only. mjcf = MuJoCo XML package. all = both.
Terminal window
curl -L "https://api.rigyd.com/api/conversions/abc123.../result?format=usd" \
-H "Authorization: Bearer rgyd_live_..." \
-o simready.zip

<name> below is the asset name chosen by the pipeline, which is not always your uploaded filename. <basename> is your uploaded filename without its extension.

usd/<name>/<name>.usd # entry point — open this one
usd/<name>/payloads/*.usd # base, meshes, physics layers
usd/<name>/payloads/materials/OmniPBR/*.mdl # when an MDL material is used
usd/<name>/textures/*.png
StatusBodyWhen
400{ "error": "Invalid format. Expected one of: usd, mjcf, all" }Bad format value
404{ "error": "Conversion job not found" }Bad id or not your job
404{ "error": "MJCF package is not available for this conversion" }format=mjcf but the pipeline did not produce an MJCF package
409{ "error": "Job not yet completed", "status": "running" }Job is still in flight
502upstream fetch failureUnderlying media store unreachable