Installation
The ContentMod Typescript SDK is available on npm. To install it, run the following command:Initializing the Client
To initialize the client with your access key and secret key, you can use the following code:index.ts
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Installation instructions for the Typescript SDK
npm i @contentmod/sdk
yarn add @contentmod/sdk
pnpm add @contentmod/sdk
bun add @contentmod/sdk
import { ContentMod } from "@contentmod/sdk";
const contentMod = new ContentMod({
publicKey: "<YOUR_PUBLIC_KEY>",
secretKey: "<YOUR_SECRET_KEY>",
});