Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.getversive.com/llms.txt

Use this file to discover all available pages before exploring further.

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);