Skip to main content

Step 1: Account and API key

  1. Create an account at dashboard.keverd.com.
  2. Create a Sandbox or Production API key. Keep it in env vars; do not commit it.
  3. See Prerequisites for details.

Step 2: Install the SDK

npm install @keverdjs/agent
For React: @keverdjs/react; Vue: @keverdjs/vue; Angular: @keverdjs/angular.

Step 3: Initialize and call one function

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 for React and Vue Overview for Vue
Need help? See our full documentation.