TheQuantCloud — Getting Started¶
Welcome to TheQuantCloud — a cloud platform for running quantum circuits on simulators and real quantum hardware. This guide walks you through setup in under 5 minutes.
What You Get (Free Tier)¶
| Feature | Limit |
|---|---|
| Simulator execution | 60 min/month |
| QPU tasks | 10/month |
| Credits | $50 (beta) |
| Saved circuits | Unlimited |
| API keys | 5 |
Step 1: Create an Account¶
- Go to studio.thequantcloud.com/signup
- Sign up with email or GitHub
- Check your email for the confirmation link
- Click the link to activate your account
Step 2: Generate an API Key¶
- Sign in to QuantStudio
- Go to the Connect page or Dashboard
- Click Generate Key, give it a name
- Copy the key — it's only shown once!
Save Your Key
The API key is displayed once. Copy it immediately and store it securely. If you lose it, revoke and create a new one.
Step 3: Install QuantSDK¶
Step 4: Set Your API Key¶
Step 5: Run Your First Cloud Circuit¶
import quantsdk as qs
# Create a Bell State circuit
circuit = qs.Circuit(2)
circuit.h(0)
circuit.cx(0, 1)
circuit.measure_all()
# Run on the cloud (Qiskit Aer simulator)
result = qs.run(circuit, backend="aer_simulator", shots=1024)
# View results
print(result.counts) # {'00': 512, '11': 512}
print(result.probabilities) # {'00': 0.5, '11': 0.5}
print(result.backend) # 'aer_simulator'
Step 6: Use QuantStudio Web IDE¶
Prefer a visual experience? Use QuantStudio — our web-based quantum IDE with:
- Monaco Code Editor — syntax highlighting, autocomplete
- One-Click Execution — run on any backend from the dropdown
- Live Visualizations — histograms, probability bars, circuit diagrams
- Built-in Terminal — Pyodide Python terminal in the browser
- Save & Load — persist circuits to the cloud
Available Backends¶
| Backend | Engine | Max Qubits | Cost |
|---|---|---|---|
local_simulator |
QuantSDK NumPy | 20 | Free |
aer_simulator |
Qiskit Aer | 25 | Free (beta) |
aer_gpu_simulator |
Qiskit Aer + GPU | 30 | Free (beta) |
cirq_simulator |
Cirq DensityMatrix | 20 | Free (beta) |
pennylane_simulator |
PennyLane default | 20 | Free (beta) |
Real QPU backends (IBM, IonQ) will be added in future releases.
API Base URL¶
All API requests go to:
What's Next?¶
- Cloud API Reference — full endpoint documentation
- Tutorials — step-by-step quantum algorithm tutorials
- Examples — 22 Jupyter notebooks
Need Help?¶
- GitHub Issues — bug reports and feature requests
- Discord — community chat
- Email: saket@thequantai.in