Get Synthesis Result

Retrieve results from a completed synthesizeReport job.

GET/v2/jobs/synthesizeReport/{job_id}

Get Synthesis Result

Retrieve results from a completed synthesizeReport job.

cURL
curl https://api.omtx.ai/v2/jobs/synthesizeReport/job_456def \
  -H "x-api-key: YOUR_API_KEY"
Response
{
  "job_id": "job_456def",
  "endpoint": "/v2/diligence/synthesizeReport",
  "output_reference": "report_789",
  "summary": { "gene_key": "brd4", "report_name": "..." },
  "markdown": "# Synthesis Report\n\n## Executive Summary...",
  "sections": [
    {
      "title": "Key Findings",
      "content": "..."
    }
  ],
  "total_claims_used": 25,
  "completed_at": "2024-01-16T14:22:30Z"
}
  • Jobs started via `/v2/diligence/getTargetDiligenceReport` use the same result endpoint.