Parsed JSON payload
Headers, plain-text body, HTML body, and attachment metadata delivered as structured fields. No MIME parsing on your end.
Point an MX record at Postscale. Inbound messages are delivered to your app as signed JSON webhooks with parsed headers, body, attachment metadata, download links, and sender metadata.
A focused API surface with production controls, predictable resources, and the operational visibility to run email confidently.
Headers, plain-text body, HTML body, and attachment metadata delivered as structured fields. No MIME parsing on your end.
Attachments are stored outside the webhook body and exposed through authenticated Postscale download URLs. No base64 bloat in retries.
Route every @yourdomain.com address to one endpoint, or define patterns like support-+ticket@… for routing inside your app.
Every delivery is signed with HMAC-SHA256. Verify authenticity in one line. Retries with exponential backoff for 4 attempts.
Built-in In-Reply-To / References threading. Know which outbound message a reply belongs to without writing your own heuristics.
Primary inbound message service data is hosted in the EU/EEA. Limited routing and infrastructure metadata may be processed under appropriate transfer safeguards.
The public API uses explicit resources and familiar JSON. Move from a first request to production without changing integration models.
See inbound docs{
"email_id": "0c1f2a3b-...",
"to": "support@yourapp.com",
"from": "customer@example.com",
"subject": "Password reset not working",
"text": "Hi, I'm trying to reset my password...",
"html": "<p>Hi, I'm trying to reset my password...</p>",
"attachments": [
{
"id": "5b7d9c0e-...",
"filename": "screenshot.png",
"content_type": "image/png",
"size": 128432,
"url": "https://api.postscale.io/v1/inbound-emails/0c1f2a3b-.../attachments/5b7d9c0e-.../download"
}
],
"received_at": "2026-04-16T11:22:00Z"
}Step-by-step tutorial: MX setup, webhook signing, reply threading, and the edge cases that break production.
Read moreClose the loop: monitor authentication for the domain that receives your inbound mail.
Read moreReplace Inbound Parse with shared-quota receiving, signed webhooks, and one dashboard for send and receive.
Read moreCompare inbound parsing, aliases, rules, attachments, and masked-address workflows.
Read moreMove from S3, SNS, and Lambda wiring to parsed inbound webhooks and stored messages.
Read moreAdd an MX record pointing at mx.postscale.io with priority 10. We verify ownership via a TXT record. The full setup is four DNS records and takes about five minutes.
Attachments are stored separately from the webhook body and returned as authenticated Postscale download URLs. Use your API credentials to fetch them, then copy them into your own storage if you need custom retention.
Yes. Define rules per domain: block senders, reject by subject pattern, auto-respond, or route to different endpoints. Rules run before the webhook fires.
Accepted inbound messages count toward the same monthly email quota as outbound sends. Outbound usage is counted per accepted recipient; inbound usage is counted per accepted message.
The free tier includes everything required to evaluate the API. No credit card required.
Create a free account