Production API that runs actual quantum computations on IBM's 127-qubit Eagle r3 processors. Real VQE execution for molecular screening in 36ms per molecule.
# Screen molecules on IBM Quantum curl -X POST \ https://moleculegen.epochcoreras.workers.dev/quantum-screen \ -H "Content-Type: application/json" \ -d '{ "count": 3, "backend": "ibm_kyoto" }'
{
"success": true,
"backend": "ibm_kyoto",
"molecules": [
{
"ground_state_energy": -137.485,
"hamiltonian_method": "VQE",
"quantum_backend": "ibm_kyoto",
"error_mitigation": true
}
],
"statistics": {
"avg_time_per_molecule_ms": 36,
"success_rate": 100
}
}