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

# Javascript

> Get up and running with Inboxy

## Install the SDK

<CodeGroup>
  ```bash npm theme={null}
  npm add inboxy
  ```

  ```bash pnpm theme={null}
  pnpm add inboxy
  ```

  ```bash yarn theme={null}
  yarn add inboxy
  ```
</CodeGroup>

## Integrate with your app

```javascript theme={null}
import { Inboxy } from "inboxy";

// Initialize
const inboxy = new Inboxy({
  apiKey: "your-api-key",
});

inboxy.accounts.create({
  accessToken: "123",
  refreshToken: "123",
  provider: "google",
  webhookUrl: "https://your.website.com/webhook",
});
```
