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

# Quickstart

> Get your account and API key, then integrate the SDK in three steps.

### Step 1: **Account and API key**

1. Create an account at [dashboard.keverd.com](http://dashboard.keverd.com).
2. Create a **Sandbox** or **Production** API key. Keep it in env vars; do not commit it.
3. See [Prerequisites](https://v2.developer.keverd.com/getting-started/prerequisites) for details.

### Step 2: **Install the SDK**

```text theme={null}
npm install @keverdjs/agent
```

For React: `@keverdjs/react`; Vue: `@keverdjs/vue`; Angular: `@keverdjs/angular`.

### Step 3: **Initialize and call one function**

```text theme={null}
import { Keverd } from '@keverdjs/agent';

Keverd.init('YOUR_PUBLIC_API_KEY');

const result = await Keverd.get();

console.log(result.event_id, result.visitor_id);
```

That's it. For framework-specific setup (React, Vue, Angular) or the full API, see [React Overview](https://v2.developer.keverd.com/docs/react) for React and [Vue Overview](https://v2.developer.keverd.com/docs/vue) for Vue

<Note>
  **Need help?** See our [full documentation](https://v2.developer.keverd.com/docs/api-reference/introduction).
</Note>
