Skip to content

List jobs

View Markdown llms-full.txt

List your conversion jobs, newest first.

MethodGET
Path/api/conversions

Simulation jobs are excluded by default — they are surfaced inline on each parent job’s simulations[] array. To include them explicitly, pass job_type=simulate_usd.

ParamTypeDefaultNotes
pageint11-indexed page number.
pageSizeint25Max 100.
job_typestringComma-separated. One or more of glb_to_simready, text_to_simready, image_to_simready, multiview_to_simready, simulate_usd.
Terminal window
curl "https://api.rigyd.com/api/conversions?page=1&pageSize=25" \
-H "Authorization: Bearer rgyd_live_..."
# Only text and image jobs
curl "https://api.rigyd.com/api/conversions?job_type=text_to_simready,image_to_simready" \
-H "Authorization: Bearer rgyd_live_..."
{
"data": [
{
"id": "abc123...",
"physiq_job_id": "phy_...",
"status": "completed",
"filename": "toolbox.glb",
"file_size_bytes": 1245678,
"stage": "export",
"progress": 100,
"job_type": "glb_to_simready",
"credits_charged": 1,
"createdAt": "2026-05-06T12:00:00.000Z",
"updatedAt": "2026-05-06T12:01:32.000Z"
}
],
"meta": { "page": 1, "pageSize": 25, "pageCount": 4, "total": 87 }
}

This is the trimmed list shape — to get input/output URLs, the preprocess component, simulations, and the full report, fetch a single job with GET /api/conversions/:id.