为自主智能体提供邮件基础设施

AI 智能体

赋予您的 AI 智能体接收和处理邮件的能力。非常适合大语言模型驱动的自动化、MCP 集成和智能体间通信。

核心功能

  • 通过程序化方式创建邮箱
  • 以结构化 JSON 格式接收邮件
  • 支持 MCP 服务器(即将推出)
  • 短保留期自动清理

示例

# Create an inbox for your AI agent
curl -X POST https://app.mailhook.co/api/v1/email_addresses/random \
  -H "Authorization: Bearer your_api_key"

# Response
{
  "data": {
    "id": "ea_abc123",
    "address": "[email protected]",
    "metadata": {}
  }
}

# Poll for incoming emails
curl https://app.mailhook.co/api/v1/email_addresses/ea_abc123/inbound_emails \
  -H "Authorization: Bearer your_api_key"

# Get structured JSON response
{
  "data": [{
    "id": "ie_xyz789",
    "from": "[email protected]",
    "subject": "Your verification code",
    "text_body": "Your code is: 847291",
    "received_at": "2024-01-15T10:30:00Z"
  }]
}

准备好开始了吗?

60 秒内创建您的第一个邮箱。