Instant DFT-quality pKa, LogP, BDE, and redox predictions
Three neural network potentials in one endpoint: Egret-1 for drug-like organics, AIMNet2 for small molecule chemistry, Orb-v3 for 100K-atom systems. Returns pKa (acid + base), LogP, LogD 7.4, BDE, redox potential, and per-atom Fukui indices in under 1 second.
/v1/chemistry/qm/propertiesimport requests
result = requests.post(
"https://scirouter.ai/v1/chemistry/qm/properties",
json={"smiles": "CC(=O)OC1=CC=CC=C1C(=O)O", "method": "egret-1"},
headers={"Authorization": "Bearer sk-sci-your-key"}
).json()["data"]
print(f"pKa_acid: {result['pka_acid']}")
print(f"LogP: {result['logp']}")
print(f"BDE: {result['bde_weakest_kcal_mol']} kcal/mol")Replacing expensive CAM-B3LYP calculations
Drug discovery pKa screening
Reactivity analysis
Redox design