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

# How to integrate

> Integrate Helicone today with one line of code

<Tabs>
  <Tab title="Curl">
    Replace the OpenAI base url

    ```bash theme={null}
    POST https://api.openai.com/v1
    ```

    with Helicone's

    ```
    POST https://oai.helicone.ai/v1
    ```
  </Tab>

  <Tab title="Python">
    Change the default base API url to Helicone's

    ```py theme={null}
    import openai

    openai.api_base = "https://oai.helicone.ai/v1"
    ```
  </Tab>

  <Tab title="Node.js">
    Add a `basePath` to the `Configuration:`

    Before:

    ```js theme={null}
    import { Configuration, OpenAIApi } from "openai";

    const configuration = new Configuration({
      apiKey: process.env.OPENAI_API_KEY,
    });

    const openai = new OpenAIApi(configuration);
    ```

    After:

    ```js theme={null}
    import { Configuration, OpenAIApi } from "openai";

    const configuration = new Configuration({
      apiKey: process.env.OPENAI_API_KEY,
      basePath: "https://oai.helicone.ai/v1",
    });

    const openai = new OpenAIApi(configuration);
    ```
  </Tab>
</Tabs>

By using our API, you agree to our
[Privacy Policy](https://www.helicone.ai/privacy) and
[Terms of Services](https://www.helicone.ai/terms) agreements.

Once you've integrated,
[**head on to onboarding**](https://www.helicone.ai/onboarding) to get into your
dashboard 🏡
