DDocumentation

Installation

Replace this page with real installation instructions for your product. It demonstrates the two building blocks most install guides need: tabs for package mana…

  • 1 min read
  • Updated Aug 20, 2026

Replace this page with real installation instructions for your product. It demonstrates the two building blocks most install guides need: tabs for package managers and steps for a walkthrough.

Install the package

bash
npm install @acme/sdk

Set up your project

1
Grab an API key

Create a key in your product's dashboard and keep it secret — treat it like a password.

2
Configure the client
acme.ts
ts
import { Acme } from '@acme/sdk';

export const acme = new Acme({ apiKey: process.env.ACME_API_KEY });
3
Make your first call
ts
const widget = await acme.widgets.create({ name: 'My first widget' });
console.log(widget.id);

Swap @acme/sdk for your real package name. Code blocks support syntax highlighting for dozens of languages, plus a title="file.ts" header.

Next: document your API in the API reference.

Was this page helpful?