For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
OverviewCodaControlAPI ReferenceChangelog
OverviewCodaControlAPI ReferenceChangelog
  • Getting Started
    • Overview
    • Quickstart
  • MCP
    • MCP Integration
  • Capabilities
    • Simulation
    • Transpilation
    • QPU Submission
    • Agents
  • Node
    • Overview
    • Integration Guide
    • Protocol
    • QubiC Example
LogoLogo
On this page
  • Prerequisites
  • Install the SDK
  • Simulate a circuit
  • Transpile between frameworks
  • Next steps
Getting Started

Quickstart

Start writing and running quantum algorithms with the Conductor Quantum SDK in minutes.
Was this page helpful?
Built with

Prerequisites

  • A Coda account (sign up)
  • An API key from the dashboard

Install the SDK

$pip install conductorquantum

Simulate a circuit

1from conductorquantum import ConductorQuantum
2
3client = ConductorQuantum(token="<your-api-key>")
4result = client.coda.simulate(
5 code="from qiskit import QuantumCircuit\nqc = QuantumCircuit(2)\nqc.h(0)\nqc.cx(0, 1)\nqc.measure_all()",
6 method="qasm",
7 shots=1024,
8)
9print(result)

Transpile between frameworks

Convert a circuit from one quantum framework to another:

1from conductorquantum import ConductorQuantum
2
3client = ConductorQuantum(token="<your-api-key>")
4result = client.coda.transpile(
5 source_code="from qiskit import QuantumCircuit\nqc = QuantumCircuit(2)\nqc.h(0)\nqc.cx(0, 1)",
6 target="cirq",
7)
8print(result)

Next steps

  • MCP Integration: use Coda from Claude Desktop or Cursor
  • Coda API Reference: full endpoint documentation