Sanka Node SDK

Install and use the official Sanka Node.js / TypeScript SDK.

Last updated: July 5, 2026

Install

Node
npm install sanka-sdk

Basic usage

TypeScript
import Sanka from "sanka-sdk";

const sanka = new Sanka({ apiKey: "sk_..." });

const orders = await sanka.orders.list({
  page: 1,
  limit: 50,
});

Next steps