Live playground
Every example on our docs runs end to end, so you can inspect the output before you paste anything into your project.
1import { createClient } from "@acme/sdk"23const client = createClient({4apiKey: process.env.ACME_KEY!5})67const invoice = await client.invoices.create({8customerId: "cus_8f2A",9amount: 4900,10currency: "usd"11})
Invoice #INV-8421