Prefer to let an AI agent do the work instead of writing HTTP calls yourself? Paige also runs an MCP server — see Connect an AI agent. Both routes sit behind the same keys and the same permissions.
Base URL
All endpoints live under/v1:
Your key carries the project
There is no project id in any path. An API key belongs to exactly one project, soPOST /v1/messages sends from that project’s WhatsApp number and GET /v1/conversations reads that project’s conversations. Nothing to pass, nothing to get wrong.
See Authentication for how to mint a key, and how this works for an AI agent connected to several projects at once.
Try it in 60 seconds
Create a key under Settings → API, then check it works:The response envelope
Every response uses one of two shapes. On success:X-Request-Id header — the same value that appears as request_id in an error body. Log it. If you ever need help with a specific failed call, that id is what identifies it.
See Errors for the full list of codes.
Paging through results
Paging isn’t identical everywhere, so check the endpoint you’re calling. Conversations and their messages use an opaque keysetcursor: pass limit (max 100, default 50), then feed the nextCursor from the response back as cursor to get the next page. Broadcast recipients instead use limit and offset, and return a total so you know how far there is to go.
What you’ll need next
Authentication
Mint a key, keep it safe, and target the right project.
Scopes
The 17 permissions a key can carry, and what each unlocks.
Errors
Status codes, error codes, and what to do about each.
Rate limits
The per-key throttle, and the separate daily send quota.
Idempotency
Retry a send safely without messaging a customer twice.
Webhooks
Get events pushed to you, and verify they’re really from Paige.
Building with an AI coding agent
If you’re having Claude, Codex, or Cursor write the integration for you, hand it the ready-made skill file rather than pasting docs at it:https://api.paigeme.dev/v1/openapi.json, public and unauthenticated — as its source of truth, and gives it working recipes for the common tasks. You’ll find the same file in the app under Settings → API → Integration skill, with copy and download buttons.