01
Dedicated Agent Inboxes
Create inboxes for agents to receive OTPs, invites, alerts, and platform email.
API READ · OTP PARSING · WEBHOOKS
Receive OTPs, magic links, alerts, and workflow emails
through a simple API.
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.
01export POSTRIDER_BASE_URL="https://postriderai.com"02export POSTRIDER_API_KEY="praa_secret"03export INBOX_ID="inb_123"0405curl -sS "$POSTRIDER_BASE_URL/api/agent/inboxes/$INBOX_ID/messages?limit=10&unread=true" \06 -H "Authorization: Bearer $POSTRIDER_API_KEY"0708export MESSAGE_ID="msg_123" # from data[0].id09curl -sS "$POSTRIDER_BASE_URL/api/agent/messages/$MESSAGE_ID" \10 -H "Authorization: Bearer $POSTRIDER_API_KEY"1112# Use data.codes[0].value or data.links[0].url, then mark handled.13curl -sS -X POST "$POSTRIDER_BASE_URL/api/agent/messages/$MESSAGE_ID/mark-handled" \14 -H "Authorization: Bearer $POSTRIDER_API_KEY"1516curl -sS -X PUT "$POSTRIDER_BASE_URL/api/agent/inboxes/$INBOX_ID/webhook" \17 -H "Authorization: Bearer $POSTRIDER_API_KEY" \18 -H "Content-Type: application/json" \19 -d '{"webhook_url":"https://agent.example.com/postrider","webhook_signature_mode":"postrider"}'