Skip to main content
DocsAPI ReferenceAI Agents & Resources

Node.js

Official Trackee SDK for Node.js and TypeScript.

View Markdown

Requires Node.js 20.3 or later.

Install

npm install @trackee/node

Configure

Create an access key and set it in your environment. The SDK reads TRACKEE_API_KEY.

export TRACKEE_API_KEY="your_access_key"

Quick start

import Trackee from "@trackee/node";

const client = new Trackee();
const { data: result } = await client.brands.list();
console.log(result.data);

Source and API usage · npm

On this page