LimitedFree inboxes for life - activated with $50 platform credit. Learn how to claim yours →

API Reference

Launch-ready REST API to manage orders, domains, clients, and wallet data programmatically.

Authentication

All public API requests require an API key in the X-API-Key header. Bearer token authentication is only used by the signed-in web app, not by the public API.

curl https://app.simpleinboxes.com/api/v1/orders \
  -H "X-API-Key: si_live_your_api_key"

Create and manage API keys from your dashboard API Keys page after signing in. Key creation and revocation require a dashboard session, so those endpoints are not listed as public API-key-auth endpoints here.

Base URL

https://app.simpleinboxes.com/api/v1

Endpoint paths below are relative to this base URL. Requests and responses use JSON.

Errors

All errors return a consistent JSON shape with a machine-readable code and a human-readable message.

{
  "success": false,
  "error": {
    "code": "NOT_FOUND",
    "message": "Order not found"
  }
}
400INVALID_REQUESTMissing or invalid parameters
401MISSING_API_KEY / INVALID_API_KEYInvalid or missing API key
404NOT_FOUNDResource not found
429RATE_LIMIT_EXCEEDEDToo many requests
500SERVER_ERRORInternal server error

Orders

Create, list, update, cancel, and reactivate inbox orders. Includes inbox-mutation jobs (renames, password rotations, profile-photo updates) and bulk nameserver checks.

Inboxes

List inboxes, retrieve credentials, manage MFA, and rotate passwords or profile photos at the inbox level.

Domains

Search the registrar marketplace, manage owned domains, retrieve nameservers, run bulk DNS jobs, and reupload to sending tools.

DNS Records

Manage SPF / DKIM / DMARC / MX / custom records on every domain. All edits are auto-synced to Cloudflare.

Workspaces

Per-client workspaces for agency mode. Create, list, update, and configure sending-tool defaults at the workspace level.

Clients

Legacy clients API — name-keyed wrapper around workspaces. Manage clients, sending-tool credentials, and saved usernames.

Recovery Pool

Park burned, dormant, or unused domains so we restore their sender reputation. Submit blacklist removal requests, track health lights, and reactivate domains once they're ready.

Registrars

Auto-update nameservers at supported registrars (Porkbun, Spaceship, Name.com, Namecheap) via saved API credentials. No more clicking through registrar dashboards.

Wallet

Master + per-workspace wallets, transaction ledger, transfers, auto-recharge, and billing-mode toggles.

Billing

Invoices, billing history, custom invoices, and per-workspace billing details.

Payments

Stripe-backed top-ups, payment methods, and the Customer Portal.

API Keys

Programmatically manage your own API keys. (Key creation & revocation are also available in the dashboard.)