Download Job Artifact
Download a named artifact emitted by a completed job.
GET
/v2/jobs/{job_id}/artifacts/{artifact_name:path}Download Job Artifact
Stream a job-owned artifact by relative artifact path.
cURL
curl https://api.omtx.ai/v2/jobs/job_123abc/artifacts/pose_0.sdf \
-H "x-api-key: YOUR_API_KEY" \
-OJResponse
Binary file response with the artifact payload and download headers.- The route returns the raw artifact bytes, not JSON.
- Successful responses include
Content-Type,Content-Length, and oftenContent-Disposition. - SDK helper:
client.jobs.download_artifact(job_id, artifact_name, output_dir=...). - For larger artifacts, use
GET /v2/jobs/{job_id}/artifacts/{artifact_name:path}/urlto request a short-lived signed download URL instead.