@launchmail/sdk
v0.1.0
Published
TypeScript client library for the LaunchMail API.
Readme
@launchmail/sdk
TypeScript client library for the LaunchMail API.
Installation
pnpm add @launchmail/sdkUsage
import { createLaunchmailClient } from "@launchmail/sdk";
const client = createLaunchmailClient({
baseUrl: "https://launchmail.me",
apiBaseUrl: "https://api.launchmail.me",
apiKey: "lmk_...",
});
const mailboxes = await client.listMailboxes();Authentication
- Organization API Key (
lmk_): Full org-level access - User API Key (
lmu_): User-scoped access - Session Token (
lms_): Short-lived embed tokens (viaBearerheader)
