Node / Python SDK

Install and use the official Sanka SDK for Node.js, TypeScript, and Python.

Overview

The official sanka-sdk gives you one client for deals, contacts, billing, outreach, and more.
  • Node.js / TypeScript package: sanka-sdk
  • Python package: sanka-sdk
  • Same core API model across languages

Install

npm install sanka-sdk

Quick examples

import Sanka from "sanka-sdk";

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

const deal = await sanka.deals.create({
  company: "Acme Corp",
  value: 50000,
  stage: "discovery",
});

Source code and releases

Next steps