AcmeSDKIntroduction
Welcome to AcmeSDK
AcmeSDK is a TypeScript-first client library for the Acme API. It handles authentication, retries, and response parsing so you can focus on building.
Fast by default
Connection pooling and automatic request batching built in.
TypeScript native
Full type safety with generated types from our OpenAPI spec.
Edge compatible
Works in Node.js, Deno, Bun, and edge runtimes.
Observable
Built-in request logging, metrics, and error tracking hooks.
Installation
bash
$
npm install @acme/sdk
$
yarn add @acme/sdk
Quick example
typescript
import
{ AcmeClient } from '@acme/sdk';
const client = new AcmeClient({
apiKey: process.env.ACME_API_KEY,
timeout: 10_000,
});
const user = await client.users.get("usr_01HTXYZ");
console.log(user.email);
This documentation was generated by AlgoQuill.
It read the AcmeSDK repository, understood the code, and produced this page automatically. The whole suite took 45 seconds.Generate docs for your project →
Next
Authentication →