Infra — SDK quickstart

Install the SDK and make your first call
View as Markdown

The SDK (@signum-tech/sdk) is generated from the Clossir OpenAPI spec. Commands return 202 Accepted (processed asynchronously); reads return 200. All calls are authenticated with an org-scoped API key.

Install

Install
$npm install @signum-tech/sdk

First call

quickstart.ts
1import { SignumClient } from "@signum-tech/sdk";
2
3const signum = new SignumClient({ apiKey: process.env.SIGNUM_API_KEY });
4
5// Reads return 200
6const asset = await signum.assets.get({ id: "ast_123" });
7
8// Commands return 202 — poll the GET endpoint for the result
9await signum.identity.parties.create({ /* … */ });
The exact client shape is generated from the OpenAPI specification once it’s wired.