Skip to content

Text → SimReady

View Markdown llms-full.txt

Send a short text description and get back a SimReady USD asset.

MethodPOST
Path/api/conversions/generate
Content-typemultipart/form-data (or application/x-www-form-urlencoded)
Job typetext_to_simready
Credits2
FieldTypeRequiredNotes
promptstringyesUp to 500 characters.
face_limitintnoCap output mesh face count.
model_versionstringnoOverride generation model (advanced).
thresholdfloatnoCoACD concavity threshold (advanced).
llm_providerstringnoOverride material-identification LLM.
skip_validationbooleannoSkip USD schema validation. Default false.
Terminal window
curl -X POST https://api.rigyd.com/api/conversions/generate \
-H "Authorization: Bearer rgyd_live_..." \
-F "prompt=a red metal toolbox with a black handle"
{
"data": {
"id": "abc123...",
"status": "queued",
"filename": "a red metal toolbox with a black handle",
"progress": 0,
"job_type": "text_to_simready",
"credits_charged": 2,
"createdAt": "2026-05-06T12:00:00.000Z"
}
}

The prompt is stored verbatim as filename so you can recognise the job in lists. The downloaded USD uses a slugified version (e.g. a_red_metal_toolbox.usd).

  • Short, concrete prompts work best. "a red metal toolbox" outperforms "some kind of container, perhaps for tools, maybe red".
  • Include material cues (metal, wood, plastic) — they feed material identification.
  • One object per prompt. Compound scenes are not supported.