/v1/immunology/neoantigen_pipelineimport requests
API_KEY = "sk-sci-your-key-here"
url = "https://scirouter.ai/v1/immunology/neoantigen_pipeline"
response = requests.post(url, json={
"gene": "KRAS",
"mutations": ["G12D", "G12V"],
"hla_alleles": ["HLA-A*02:01", "HLA-A*03:01"]
}, headers={"Authorization": f"Bearer {API_KEY}"})
result = response.json()
for candidate in result["candidates"][:5]:
print(f"{candidate['peptide']}: rank={candidate['rank']:.2f}%, "
f"score={candidate['combined_score']:.3f}")Cancer neoantigen discovery
Immunotherapy target identification
Vaccine candidate prioritization
Tumor immunology research