/v1/chemistry/propertiesimport requests
API_KEY = "sk-sci-your-key-here"
url = "https://scirouter.ai/v1/chemistry/properties"
response = requests.post(url, json={
"smiles": "CC(=O)Oc1ccccc1C(=O)O" # Aspirin
}, headers={"Authorization": f"Bearer {API_KEY}"})
props = response.json()
print(f"Molecular Weight: {props['molecular_weight']:.2f}")
print(f"LogP: {props['logp']:.2f}")
print(f"TPSA: {props['tpsa']:.2f}")
print(f"Lipinski compliant: {props['lipinski_pass']}")Drug-likeness screening of compound libraries
QSAR model feature generation
Chemical database enrichment
Pre-filtering compounds before docking