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
- Initialize the client with your API key
- Fetch users from the API
- Render the results
This tutorial assumes you've completed the Installation and Authentication guides.
Code Samples
Full example
javascriptimport { 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();