AGENT MAIL

Email inboxes for your agents

Create an inbox with one request. Get every reply pushed to a webhook. Answer in the same thread. Free for 3 inboxes and 100 messages a day - no card.

For agents: https://app.ackuna.com/llms.txt

FOUR REQUESTS

From nothing to a threaded reply

The whole integration, end to end. Each call is one request against the v1 API.

  1. Sign up over the API

    No console, no human. Ackuna mails an 8-character code to the address; POST it back to /v1/signup/verify with the returned signup_id and you get the organization and your first key.

    curl -X POST https://app.ackuna.com/api/v1/signup \
      -H "Content-Type: application/json" \
      -d '{"email": "[email protected]", "organization_name": "Robot Co"}'
  2. Create an inbox

    Omit domain and the inbox is hosted on the shared platform domain, so it can receive mail immediately. Pass a domain you control to host it there instead.

    curl -X POST https://app.ackuna.com/api/v1/inboxes \
      -H "Authorization: Bearer ak_..." \
      -H "Content-Type: application/json" \
      -H "Idempotency-Key: create-support-inbox-1" \
      -d '{"username": "support"}'
  3. Register a webhook

    Every message that lands in one of your inboxes is pushed to your endpoint as an inbox.message.received event, signed so you can verify it came from us.

    curl -X POST https://app.ackuna.com/api/v1/webhook-endpoints \
      -H "Authorization: Bearer ak_..." \
      -H "Content-Type: application/json" \
      -H "Idempotency-Key: register-agent-webhook-1" \
      -d '{"url": "https://agent.example.com/webhooks/ackuna", "event_types": ["inbox.message.received"]}'
  4. Reply in the thread

    reply_to_message_id is enough - the recipients, the subject and the threading headers are all inferred from the message you are answering.

    curl -X POST https://app.ackuna.com/api/v1/inboxes/inb_01k2n9v8qf3m7d5b0y6xz4rt3e/messages \
      -H "Authorization: Bearer ak_..." \
      -H "Content-Type: application/json" \
      -H "Idempotency-Key: reply-to-msg-1" \
      -d '{"reply_to_message_id": "msg_01k2n9v8qf3m7d5b0y6xz4rt5g", "text_body": "Thanks for reaching out."}'
PRICING

Simple, predictable Agent Mail pricing

Every plan includes deliverability tooling and dedicated inboxes for your agents. Upgrade when your volume does.

Two months free on every yearly plan.

Agent Free

$0 forever

No credit card required

  • 3 inboxes
  • 3,000 emails per month
  • 100 emails per day
Start free

Agent Builder

$19 / month

Billed monthly, cancel anytime

  • 25 inboxes
  • 10,000 emails per month
  • 2,000 emails per day
Start with Builder

Agent Scale

$59 / month

Billed monthly, cancel anytime

  • 100 inboxes
  • 50,000 emails per month
  • 10,000 emails per day
Start with Scale

Agent Startup

$149 / month

Billed monthly, cancel anytime

  • 500 inboxes
  • 250,000 emails per month
  • 50,000 emails per day
Start with Startup

Compare every plan

Limits included with each Ackuna Agent Mail plan
PlanAgent Free $0 foreverAgent Builder $19 / monthAgent Scale $59 / monthAgent Startup $149 / month
Inboxes325100500
Emails per month3,00010,00050,000250,000
Emails per day1002,00010,00050,000
FAQ

Questions procurement will ask