🔐 API Authentication

Enter your BioQL API key to access Quantum Bio-HNET

Invalid API key. Please try again.

Need an API key?
Contact the Spectrix BioQL team or visit the BioQL Portal to get your API key.

⚛️ Quantum Bio-HNET

Quantum-Enhanced Molecular Analysis for Drug Discovery

Checking connection...

📊 Analysis Results

Running quantum analysis...

Enter a SMILES string and click Analyze to see results

📚 API Documentation

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"}
    ]
  }'