Skip to main content

Installation Methods

Install the RecallrAI Node.js SDK with your preferred package manager.
npm install recallrai

Verify Installation

import { RecallrAI } from "recallrai";

const client = new RecallrAI({
  apiKey: "rai_yourapikey",
  projectId: "project-uuid",
});

console.log("RecallrAI client initialized:", Boolean(client));

Get Your API Credentials

1

Sign up for RecallrAI

Create an account at RecallrAI Dashboard.
2

Get your API key

Navigate to your project API keys section and create an API key. It starts with rai_.
3

Get your Project ID

Copy your Project UUID from the dashboard.
Keep your API key secure and never commit it to version control.

Next Steps

Quickstart

Get started with the Node.js SDK in minutes

Client Reference

Learn about the RecallrAI client class

User Management

Manage users, sessions, and memories

View on GitHub

Visit the SDK repository for examples and source code