Quantum-Enhanced Molecular Analysis for Drug Discovery
Running quantum analysis...
Enter a SMILES string and click Analyze to see results
Use the REST API to integrate Quantum Bio-HNET into your applications:
# Analyze a single molecule
curl -X POST "http://165.227.121.158:5003/api/quantum-biohnet/analyze" \
-H "Content-Type: application/json" \
-d '{"smiles": "CCO", "name": "Ethanol"}'
# Batch analysis
curl -X POST "http://165.227.121.158:5003/api/quantum-biohnet/batch" \
-H "Content-Type: application/json" \
-d '{
"molecules": [
{"smiles": "CCO", "name": "Ethanol"},
{"smiles": "CC(=O)O", "name": "Acetic Acid"}
]
}'