Skip to main content

Getting started

Installation

The Owney SDK can be installed in your TypeScript project from the Node Package Manager:

npm install @owney/sdk

Initialization

Initialize the SDK with your Owney API key. To request an SDK key, contact your Owney account manager or email support@owney.app.

import { OwneySDK } from "@owney/sdk";

const owney = new OwneySDK({
apiKey: "your-owney-api-key",
});