> ## 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.

# TypeScript SDK

> Integrate Versive into your JavaScript and TypeScript applications

## Installation

Install the Versive TypeScript SDK using npm or yarn:

```bash theme={null}
npm install versive-sdk
# or
yarn add versive-sdk
```

## Initialization

Initialize the client with your API key:

```typescript theme={null}
import { VersiveClient } from 'versive-sdk';

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

## Usage Example

### List Studies

```typescript theme={null}
const studies = await client.studies.list();
console.log(studies);
```
