Skip to content

Quick Start

1. Initialize the client

import { ImbraceClient } from "@imbrace/sdk"
const client = new ImbraceClient({
accessToken: process.env.IMBRACE_ACCESS_TOKEN,
env: "stable",
})
import { ImbraceClient } from "@imbrace/sdk"
const client = new ImbraceClient({
apiKey: process.env.IMBRACE_API_KEY,
organizationId: process.env.IMBRACE_ORGANIZATION_ID,
env: "stable",
})

2. Fetch your boards

Boards are CRM pipelines — leads, deals, tasks, or any structured data. This call requires only your credential.

const { data: boards } = await client.boards.list()
for (const board of boards) {
console.log(board.id, board.name)
}

If you see your boards listed, the SDK is connected and authenticated. An empty list (data: []) just means no boards exist yet — that’s fine, not an error.


3. Next steps

The Full Flow Guide walks the four major workflows end-to-end. Jump straight to a section:

For the per-namespace API reference, see Resources.