This is a sample of what AlgoQuill generates from a real GitHub repository.Create yours free →
AcmeSDK Docs
acmesdk.algoquill.ai
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 →
Ask AI anythingPowered by AlgoQuill
How do I authenticate?
Pass your API key in the constructor: new AcmeClient({ apiKey: '...' }). See the Authentication page for OAuth and token refresh.
Ask about this documentation...

Ready to generate your own?

Connect your GitHub repository and have docs this good in under 5 minutes. Free to start.