Getting Started
Quickstart
1. Grab an API key
In the dashboard, go to Settings → API Keys and create a new key.
2. Install an SDK
npm install @jinzai/sdk
3. Make your first request
import { JinzaiClient } from "@jinzai/sdk";
const jinzai = new JinzaiClient({ apiKey: process.env.JINZAI_API_KEY! });
const me = await jinzai.account.get();
console.log(me);

