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
import { ContentMod } from "@contentmod/sdk";

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