An address of its own.
Create a separate mailbox for each agent. Give research, support, and operations their own place in the conversation.
agent@agents.scargo.ai
The email API for AI agents. Provision an address, issue a scoped key, and build workflows that send, receive, and follow the conversation.
Private beta · Mail activation is in progress.
Example agent workflow
research@agents.scargo.ai
sm_••••••••••••
Beyond the chat window
AI agents need email when a task depends on people, services, or replies that arrive later. An inbox gives the conversation somewhere to continue.
Why agents need emailRequest a quote, collect a document, or ask a customer a question. They can answer from the inbox they already use.
Keep the address and correspondence across agent runs. Your application resumes the task when new information arrives.
Assign a mailbox to a role or project, with credentials scoped to the correspondence that agent needs.
From idea to implementation
Supplier coordination, support, document collection, and authorized account invitations.
Explore the workflows ↗ Developer guide · 02Real REST examples for provisioning, authentication, sending, event polling, and replies.
Read the quickstart ↗ Buyer’s guide · 03Compare Scargo Mail, AgentMail, and Resend by integration model and current availability.
Compare the approaches ↗Build email into your agent’s workflow with familiar HTTP requests. Your framework, your model, your logic.
Give each agent an address and its own scoped key.
Keep messages, replies, and delivery events together.
Poll for new messages and decide what happens next.
curl "$SCARGO_URL/v1/mailboxes" \
-H "Authorization: Bearer $SCARGO_ACCOUNT_KEY" \
-H "Content-Type: application/json" \
-d '{
"name": "Research agent",
"local_part": "research"
}'
201 Created A mailbox and its scoped API key
Example request and response. Use your account key to create a mailbox; use the returned agent key for mail. Copy includes this API’s base URL.
A persistent identity and a conversation your agent can pick up whenever it’s ready.
Create a separate mailbox for each agent. Give research, support, and operations their own place in the conversation.
agent@agents.scargo.ai
Issue a key for one mailbox, with read, send, or both permissions. Rotate or revoke access from your console.
One agent. One scoped key.
Follow queued messages through delivery events. Retry requests with the same idempotency key to avoid duplicate sends.
Queued → sent → delivered
Find three vendors that can support our EU expansion.
I’ve shortlisted three options. Are there any budget constraints?
Reply in the same threadKeep the first year under €20,000.
Got it. I’ll narrow the shortlist and update the brief.
Read the response, keep the thread, and carry on. Email becomes part of the workflow your agent already understands.
You keep control of the accounts, credentials, and permissions behind your agents.
Account boundaries and mailbox permissions apply to every authenticated request.
Mailboxes and messages live in a private PostgreSQL database. API keys are stored as hashes.
Explore the API today. Build toward your first email workflow.