> ## Documentation Index
> Fetch the complete documentation index at: https://docs.haiqu.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Started

> Get up and running with Haiqu SDK

<Steps>
  <Step title="Get Your API Key">
    To request access, please complete the contact form on our website: \
    [https://haiqu.ai/contactform](https://haiqu.ai/contactform)

    After submitting the form, our team will review your request and contact you with next steps. If approved

    <Check>
      You'll receive an email with your API key and access instructions.
    </Check>
  </Step>

  <Step title="Access JupyterLab Environment">
    Launch your pre-configured quantum development environment with everything set up.

    <Info>
      No installation required! Everything is pre-configured in your cloud environment.
    </Info>
  </Step>

  <Step title="Authenticate and Initialize">
    Log in and start your first experiment.

    ```python theme={null}
    from haiqu.sdk import haiqu
      
    # Login with your API key
    haiqu.login()
      
    # Initialize your first experiment
    haiqu.init("My First Quantum Experiment")
    ```

    <Check>
      You're now ready to build quantum applications!
    </Check>
  </Step>

  <Step title="Create and Run Your First Quantum Circuit">
    Build and execute a simple quantum circuit with error mitigation.

    ```python theme={null}
    from qiskit import QuantumCircuit

    # Create a simple Bell state circuit 
    qc = QuantumCircuit(2)
    qc.h(0)
    qc.cx(0, 1)
    qc.measure_all()
      
    # Execute with built-in error mitigation
    job = haiqu.run(qc, shots=1000, device_id="fake_fez", use_mitigation=True)
    results = job.result()

    print(f"Execution results:", results)
      
    print(f"Circuit executed successfully!")
    ```

    <Check>
      Congratulations! You've executed your first quantum circuit with Haiqu SDK.
    </Check>
  </Step>
</Steps>
