All articles
Guidesv2.0.0

Quick Start Tutorial

Quick Start Tutorial

Build your first integration in under 10 minutes.

What you'll build

A simple app that fetches users from the API and displays them in a list.

Steps

  1. Initialize the client with your API key
  2. Fetch users from the API
  3. Render the results

This tutorial assumes you've completed the Installation and Authentication guides.

Code Samples

Full example
javascript
import { Client } from '@acme/sdk';

const client = new Client({ apiKey: process.env.API_KEY });

async function main() {
  const users = await client.users.list();
  users.forEach((u) => console.log(u.name));
}

main();