RESTful API、交互式 Swagger 文档、Webhook 以及用于 AI 智能体的 MCP 服务器。将隐私优先邮件转发集成到您的技术栈所需的一切。
两种集成方式
支持两种身份验证方式
从仪表板生成 API 密钥。在 Authorization 标头中将其作为 Bearer 令牌传递。
Authorization: Bearer sk_live_abc123...
适用于基于浏览器的集成。通过 Web 登录进行验证,并使用带有 CSRF 令牌的会话 Cookie。
Cookie: ractermx_session=abc123; X-CSRF-TOKEN: ...
RacterMX API 遵循 RESTful 规范。JSON 输入,JSON 输出。所有端点位于 /api/v2/ 下,且需要身份验证。
https://ractermx.com/api/v2# Send an email via the RacterMX API curl -X POST https://ractermx.com/api/v2/emails/send \ -H "Authorization: Bearer sk_live_abc123" \ -H "Content-Type: application/json" \ -d '{ "from": "hello@yourdomain.com", "to": ["user@example.com"], "subject": "Hello from RacterMX", "html": "<h1>It works!</h1>" }' # Response { "success": true, "message_id": "<abc123@yourdomain.com>" }
60+ endpoints covering domains, aliases, email sending, webhooks, blocklists, SMTP credentials, DMARC analytics, security posture, and more. All documented with interactive try-it-out.
让 AI 通过自然语言管理您的邮件转发
RacterMX MCP 服务器将每个 API 端点暴露为 AI 智能体可以调用的工具。将其连接到 Claude、ChatGPT 或任何兼容 MCP 的客户端,即可通过对话管理域名、别名和邮件转发。
// Add to your MCP client config { "mcpServers": { "ractermx": { "command": "npx", "args": ["@ractermx/mcp-server"], "env": { "RACTERMX_API_KEY": "sk_live_abc123" } } } } // Then ask your AI agent: "List all my domains on RacterMX" "Create an alias catch-all@mydomain.com" "Show me email logs from the last hour"
Create a free account to get your API key and start integrating RacterMX in minutes.