Get Uploaded Artifact

Resolve metadata for a previously uploaded artifact.

GET/v2/artifacts/get-artifact

Get Uploaded Artifact

Return metadata for an uploaded artifact by `artifact_id`.

cURL
curl -G https://api.omtx.ai/v2/artifacts/get-artifact \
  -H "x-api-key: YOUR_API_KEY" \
  --data-urlencode "artifact_id=11111111-1111-1111-1111-111111111111"
Response
{
  "artifact_id": "11111111-1111-1111-1111-111111111111",
  "filename": "target.pdb",
  "content_type": "chemical/x-pdb",
  "size_bytes": 12345,
  "created_at": "2026-03-05T00:00:00Z",
  "gs_uri": "gs://om-upload-artifacts/user-1/11111111-1111-1111-1111-111111111111_target.pdb"
}
  • Use this route to verify the artifact exists before launch.
  • SDK helper: `client.artifacts.get(artifact_id)`.