Go from signup to a sent email in about five minutes. The fastest path is the official Node / TypeScript SDK — a raw curl request works just as well.
After signing in, go to Settings → API Keys and create a key. A live key starts with ps_live_; a sandbox key starts with ps_test_ (captured, never delivered). Treat it like a password — keep it server-side and out of source control.
export PRISTINESEND_API_KEY=ps_live_xxxxxxxxxxxxxxxxThe SDK ships ESM + CJS type definitions and has no required dependencies. Skip this step if you’re using curl.
Send one transactional email. The SDK reads the API base URL and auth from your key — and attaches an idempotency key on every send, so a network retry never double-sends.
A successful response looks like:
If from is omitted, your workspace default sender is used. A supplied from must be on a verified domain, or the API returns 403 sender_not_verified.
Every send is recorded under Logs in your dashboard — filter by status, recipient, or date — and is readable over the API at GET /v1/emails/:id using the id from the response. Test-mode sends carry a Test badge.