Skip to main content

Installation

Install the Versive TypeScript SDK using npm or yarn:
npm install versive-sdk
# or
yarn add versive-sdk

Initialization

Initialize the client with your API key:
import { VersiveClient } from 'versive-sdk';

const client = new VersiveClient({
  token: "YOUR_API_KEY"
});

Usage Example

List Studies

const studies = await client.studies.list();
console.log(studies);