Quantum Infrastructure
The quantum compute layer for every industry
Jobs Total
0
Submit your first
Gate Fidelity
99.3%
Avg across backends
Best Speedup
—
vs classical
QPU Credits
4,820
Resets in 14 days
Job Queue
No jobs yet — submit one to get started
Access Methods
🌐
Web Platform
Upload any file, get results.
💬
Natural Language
Describe in plain English.
{ }
REST API
Integrate into any app.
🖥
Desktop Agent
Watches any app automatically.
Qubit Monitor
● LIVEBloch Sphere · 4-Qubit Register
QPU Backends
IBM
IBM Eagle
127q · superconducting
Online
IQ
IonQ Aria
25q · trapped ion
Busy
SIM
QASM Simulator
32q · free
Online
Last Result
Submit a job to see results
Submit a Quantum Job
Describe in plain English, or configure manually
✦ AI
Describe your problem in plain EnglishDomain
🏗Structural
QAOA
🌊CFD / Fluids
HHL
🧬Mol. Biology
VQE
🏛Architecture
QAOA
🚚Logistics
QAOA
🌎Climate
VQE
📈Finance
QAOA
💊Pharma
VQE
Configuration
QPU Backend
Algorithm
Shots
Precision (1-5)
Input File (optional)
Est: ~8 min
Algorithm by Domain
🏗 Structural
QAOA
🌊 CFD
HHL
🧬 Molecular
VQE
📈 Finance
QAOA
💊 Pharma
VQE
🚚 Logistics
QAOA
🌎 Climate
VQE
🏛 Architecture
QAOA
Typical Speedups
Finance
1000x
Logistics
500x
Pharma
320x
CFD
840x
REST API
One endpoint. Any language. Any app.
API KEYqg_live_sk_••••••••••••••••••••••••
POST/api/jobs/submitSubmit any quantum job
# Python
r = requests.post("https://api.quantumgate.com/api/jobs/submit",
headers={"Authorization": "Bearer YOUR_API_KEY"},
data={"domain": "finance"},
files={"file": open("data.csv","rb")})
r = requests.post("https://api.quantumgate.com/api/jobs/submit",
headers={"Authorization": "Bearer YOUR_API_KEY"},
data={"domain": "finance"},
files={"file": open("data.csv","rb")})
GET/api/status/{job_id}Poll progress
d = requests.get(f"https://api.quantumgate.com/api/status/{job_id}", headers=auth).json()
GET/api/results/{job_id}Get results
result = requests.get(f"https://api.quantumgate.com/api/results/{job_id}", headers=auth).json()
print(result["headline"])
print(result["headline"])
POST/api/jobs/nlNatural language submit
r = requests.post("https://api.quantumgate.com/api/jobs/nl", headers=auth,
json={"prompt": "Optimize 340 delivery routes, minimize fuel"})
json={"prompt": "Optimize 340 delivery routes, minimize fuel"})
🍎
Python
pip install quantumgate
⬡
JavaScript
npm install @quantumgate/sdk
📊
R Package
Coming Q3 2026
📐
MATLAB
Coming Q3 2026
◯
Julia
Coming Q4 2026
🔗
Webhooks
Push to any URL
QuantumGate Desktop Agent
A lightweight background process that watches your apps automatically. Save a file in ANSYS, export from Rhino, run MATLAB — the agent detects it, submits to QuantumGate, results write back when ready.
How It Works
Runs silently in your system tray.
1
Work normally in ANSYS, Rhino, MATLAB, Excel.
2
Agent detects a solvable problem on save.
3
Notification: "Quantum job ready. Submit?"
4
Results write back into your file when complete.
Supported Apps
Current integrations:
🔧
ANSYS Mechanical / Fluent
Active🦎
Rhino 3D + Grasshopper
Active📐
MATLAB / Simulink
Active📊
Excel / Google Sheets
Active🧬
PyMOL / ChimeraX
Q3 2026🌊
OpenFOAM
Q4 2026Configuration
Set once, runs forever.
Default Backend
Submission Mode
Any App via File Watcher
Point at any folder — works with anything that saves files.
1
Point the agent at any folder.
2
Any file saved is checked for a solvable problem.
3
Works with .stl, .csv, .xlsx, .json — anything.
4
Results saved as a new file in the same folder.
Pricing
Simple, transparent pricing
Start free. Pay for real quantum compute when you need it.
Free
$0/mo
Simulator only. Unlimited jobs. Perfect for testing.
✓Simulator unlimited
✓All 8 domains
✕No real QPU
✕No API
Starter
$49/mo
API access and SDK. Build quantum into your apps.
✓Everything in Free
✓REST API + SDK
✓Webhooks
✕No real QPU
Pro
$299/mo
1 real QPU job/mo on IBM Eagle 127-qubit hardware.
✓Everything in Starter
✓1 QPU job/mo — IBM Eagle
✓Priority queue
✓Extra credits $299
Team
$799/mo
3 QPU jobs/mo plus desktop agent for your whole team.
✓Everything in Pro
✓3 QPU jobs/mo
✓Desktop agent
✓10 seats
QPU Credits
Buy additional real quantum jobs any time.
$299 per credit
1 credit$299
5 credits$1,399
20 credits$4,999
Enterprise
Custom QPU volume, dedicated support, SLA, white-label.
✓Custom QPU volume
✓99.9% uptime SLA
✓Dedicated Slack
✓White-label
Common questions
Simulator vs real QPU?
Simulator is free on classical hardware. Real QPU runs on IBM's 127-qubit quantum computer for genuine quantum advantage.
How long does a QPU job take?
5-15 minutes end to end. You get notified when done.
Do unused jobs roll over?
Monthly QPU jobs reset each cycle. Purchased credits never expire.
What industries?
Structural, CFD, molecular, architecture, finance, pharma, logistics, climate.
Open Source
QuantumGate Solver SDK
Connect any simulation software to QuantumGate QPU. Implement two methods. MIT licensed.
Quick start
Python
from quantumgate_sdk import QuantumGateClient
client = QuantumGateClient(api_key="qg_live_sk_...")
job = client.submit(domain="logistics", objective="Minimize fleet distance", file_path="routes.csv")
result = client.wait(job.id)
print(result.headline)
client = QuantumGateClient(api_key="qg_live_sk_...")
job = client.submit(domain="logistics", objective="Minimize fleet distance", file_path="routes.csv")
result = client.wait(job.id)
print(result.headline)
Available adapters
OpenFOAM (CFD)✓ Available
FEniCS (FEM)In progress
PySCF (Chemistry)In progress
OR-Tools (Logistics)Needed
ANSYS MechanicalNeeded
RDKit (Pharma)Needed
Contribute an adapter
Write the adapter that connects your solver to QuantumGate. Your adapter ships to every user.
1Fork the repo
2Implement SolverAdapter
3Add an example
4Open a PR