> ## Documentation Index
> Fetch the complete documentation index at: https://docs.contentmod.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Installation

> Installation instructions for the Typescript SDK

## Installation

The ContentMod Typescript SDK is available on npm. To install it, run the following command:

<CodeGroup>
  ```bash npm theme={null}
  npm i @contentmod/sdk
  ```

  ```bash yarn theme={null}
  yarn add @contentmod/sdk
  ```

  ```bash pnpm theme={null}
  pnpm add @contentmod/sdk
  ```

  ```bash bun theme={null}
  bun add @contentmod/sdk
  ```
</CodeGroup>

## Initializing the Client

To initialize the client with your access key and secret key, you can use the following code:

```ts index.ts theme={null}
import { ContentMod } from "@contentmod/sdk";

const contentMod = new ContentMod({
  publicKey: "<YOUR_PUBLIC_KEY>",
  secretKey: "<YOUR_SECRET_KEY>",
});
```
