---
title: Agent Email
full: true
_openapi:
  toc:
    - depth: 2
      title: Get Email Alias
      url: '#get-agent-email'
    - depth: 2
      title: Create Email Alias
      url: '#create-agent-email'
    - depth: 2
      title: Get Inbox
      url: '#get-email-inbox'
    - depth: 2
      title: Send Email
      url: '#send-agent-email'
    - depth: 2
      title: Reply to Email
      url: '#reply-agent-email'
  structuredData:
    headings:
      - content: Get Email Alias
        id: get-agent-email
      - content: Create Email Alias
        id: create-agent-email
      - content: Get Inbox
        id: get-email-inbox
      - content: Send Email
        id: send-agent-email
      - content: Reply to Email
        id: reply-agent-email
    contents:
      - content: >-
          Every Agnic agent gets a dedicated email address (agent-{id}@agent.agnic.ai)
          for sending, receiving, and replying to emails programmatically.
        heading: get-agent-email
---

Dedicated email addresses for AI agents — send, receive, and manage email programmatically.

Every agent gets a unique address `agent-{id}@agent.agnic.ai`. Use these endpoints to manage the alias, check the inbox, send emails, and reply to messages.

<APIPage
  document={"content/openapi/agnicpay.yaml"}
  operations={[
    { path: "/api/agent/email", method: "get" },
    { path: "/api/agent/email", method: "post" },
    { path: "/api/agent/email/inbox", method: "get" },
    { path: "/api/agent/email/send", method: "post" },
    { path: "/api/agent/email/reply", method: "post" },
  ]}
  webhooks={[]}
  hasHead={true}
/>
