The core accessible interface for quantum services, engineered by opendev-labs.
Quantum-API is a high-performance RESTful API designed to expose quantum computing capabilities to web and mobile applications. It handles job queuing, result retrieval, and system status monitoring with enterprise-grade security and scalability.
- Job Management: Asynchronous submission and tracking of quantum circuits and ML jobs.
- Scalable Architecture: Built on top of FastAPI for high concurrency and low latency.
- Unified Interface: Single point of entry for multiple quantum backends.
- Health Monitoring: Real-time system status and backend availability checks.
cd Quantum-API pip install -r requirements.txtStart the server:
python -m app.mainThe API will be available at http://localhost:8000.
curl -X POST "http://localhost:8000/jobs" \ -H "Content-Type: application/json" \ -d '{"circuit_id": "bell_state", "shots": 1024}'docker build -t opendev-labs/quantum-api . docker run -p 8000:8000 opendev-labs/quantum-apiWe welcome contributions! Please see our contribution guidelines for more details.
This project is licensed under the MIT License - see the LICENSE file for details.
Copyright © 2026 opendev-labs