recall-ai
v1.1.9
Published
Recall AI API client and types
Downloads
161
Readme
Recall AI Node Client
An easy to use Node/TypeScript client for Recall APIs.
Usage
// Example usage
import { RecallAPI } from "recall-ai";
const apiKey = process.env.RECALL_API_KEY || "";
const api = new RecallAPI(apiKey);
async function logBotsToConsole() {
const resp = await api.bot.botList({});
const bots = resp.results;
if (!bots) {
console.log("No bots found");
}
console.log("Found", bots?.length, "bots:", JSON.stringify(bots, null, 2));
}
logBotsToConsole();