01
Dedicated Agent Inboxes
Create inboxes for agents to receive OTPs, invites, alerts, and platform email.
API READ · OTP PARSING · WEBHOOKS
Create inboxes your agents can access through an API.
Capture OTPs, invites, alerts, and workflow triggers.
Create inboxes for agents to receive OTPs, invites, alerts, and platform email.
PostRider parses verification codes and actionable links as soon as messages arrive.
Issue keys so agents can read, mark, and handle messages without a shared human mailbox.
01import postrider0203client = postrider.Client(api_key="pr_live_7x8")0405# Create an inbox an agent can read06inbox = client.inboxes.create({07 "name": "cody-dev-agent",08 "extract": ["otp", "links"],09 "webhook_url": "https://agents.example/events"10})1112message = client.messages.latest(inbox.id)13code = message.extractions.otp14client.messages.mark_handled(message.id)