Skip to content

Quickstart

View Markdown llms-full.txt

This guide takes you from zero to a downloaded SimReady USD in five minutes.

  1. Create an account and mint an API key.

    Sign up at app.rigyd.com, then go to Settings → API Keys and click Create key. Copy the rgyd_live_... token — you only see it once.

  2. Submit a conversion.

    Send any 3D file you have. glb is the fastest path because it skips preprocessing.

    Terminal window
    curl -X POST https://api.rigyd.com/api/conversions \
    -H "Authorization: Bearer rgyd_live_..." \
    -F "file=@./model.glb"

    You get back 202 Accepted:

    {
    "data": {
    "id": "abc123...",
    "status": "queued",
    "filename": "model.glb",
    "progress": 0,
    "job_type": "glb_to_simready",
    "credits_charged": 1,
    "createdAt": "2026-05-06T12:00:00.000Z"
    }
    }
  3. Poll until it’s done.

    Terminal window
    curl https://api.rigyd.com/api/conversions/abc123... \
    -H "Authorization: Bearer rgyd_live_..."

    Status moves through submitting → preprocessing → queued → running → completed | failed. Most jobs finish in under two minutes. See Job lifecycle for the full payload shape.

  4. Download the result.

    Terminal window
    curl -L "https://api.rigyd.com/api/conversions/abc123.../result?format=usd" \
    -H "Authorization: Bearer rgyd_live_..." \
    -o simready.zip

    The ZIP contains a .usd and its textures. Drop it into Isaac Sim, MuJoCo, or any USD-aware tool.