Synthesize
The Synthesize API returns a summary of guidelines and research for any clinical queryHow it works
API specifications
Data security
Last updated
Was this helpful?
The Synthesize API returns a summary of guidelines and research for any clinical queryLast updated
Was this helpful?
Was this helpful?
POST /v1/synthesis HTTP/1.1
Host: cg-api-prod.system.com
x-api-key: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 270
{
"user_query": "text",
"population_filter": {
"age": 1,
"sex": "female",
"race": "american indian or alaskan native"
},
"publication_filter": {
"publication_date": {
"start_year": 1,
"end_year": 1
},
"publication_type": [
"experimental trial"
],
"publication_quality": "high"
},
"fast_mode": false
}textGET /v1/synthesis/{job_id} HTTP/1.1
Host: cg-api-prod.system.com
x-api-key: YOUR_API_KEY
Accept: */*
{
"status": "not_exists",
"synthesis": {
"synthesis": {
"text": "text",
"references": [
{
"index": 1,
"reference_text": "text",
"document_title": "text",
"authoring_societies_or_journal": [
"text"
],
"publish_date": "text",
"link_or_doi": "text",
"cited_by": 1,
"source_type": "text",
"authors": [
"text"
],
"journal_quality": "text"
}
]
},
"response_flags": {
"contains_guideline": true,
"contains_trial": true,
"quality": "low",
"quantity": "limited",
"relevance": "unanswered",
"confidence_score": "low"
},
"synthesis_logs": {
"total_time_seconds": 1,
"guideline_search_time_seconds": 1,
"guideline_lookup_time_seconds": 1,
"evidence_retrieval_time_seconds": 1,
"blending_time_seconds": 1
}
}
}