Synthesize Report
Create comprehensive reports from claims. Specify gene_key for targeted analysis.
POST
/v2/diligence/synthesizeReportSynthesize Report
Create comprehensive reports from claims. Specify gene_key for targeted analysis.
cURL
curl -X POST https://api.omtx.ai/v2/diligence/synthesizeReport \
-H "x-api-key: YOUR_API_KEY" \
-H "idempotency-key: synth-$(date +%s)" \
-H "Content-Type: application/json" \
-d '{
"gene_key": "brd4"
}'When to use
- Compiling research findings
- Creating summary documents
Typical flow
- Ensure claims exist for the gene_key (library or deep-diligence)
- Submit synthesis job
- Poll for completion
Response
{
"job_id": "job_456def",
"status": "running"
}- Alias: `/v2/diligence/getTargetDiligenceReport` (same payload + pricing).
- Results are retrieved via `/v2/jobs/synthesizeReport/{job_id}`.