Client SDKs

Official SDKs for building with the Exabase API in TypeScript.

Quick installation

npm install @exabase/sdk

Quick start

import { Exabase } from "@exabase/sdk";

const api = new Exabase({
  apiKey: process.env.EXABASE_API_KEY!,
});

const workspace = await api.workspaces.create({
  name: "Project Alpha",
});