Skip to content

Getting Started

Before you begin, make sure you have:

  • Node.js 18 or later
  • npm, yarn, or pnpm package manager
  • An Acme account with an API key (sign up here)
Terminal window
npm install @acme/sdk
  1. Import the SDK

    import { AcmeClient } from "@acme/sdk";
  2. Initialize the client

    const client = new AcmeClient({
    apiKey: process.env.ACME_API_KEY,
    });
  3. Make your first request

    const result = await client.resources.list();
    console.log(result);

Now that you have the SDK installed, explore these guides: