API RESTful, documentazione Swagger interattiva, webhook e un MCP Server per agenti IA. Tutto ciò che serve per integrare l'inoltro e-mail incentrato sulla privacy nel tuo stack.
Due modi per integrarsi con RacterMX
Specifica OpenAPI 3.0 completa con prova interattiva. Gestisci domini, alias, log e-mail, webhook, liste di blocco, credenziali SMTP e altro.
Apri API Explorer →Server Model Context Protocol per agenti IA. Lascia che Claude, GPT o il tuo LLM gestiscano l'inoltro e-mail tramite linguaggio naturale.
Scopri di più →Due metodi di autenticazione supportati
Genera le API Key dalla tua dashboard. Passale come Bearer token nell'header Authorization.
Authorization: Bearer sk_live_abc123...
Per integrazioni basate su browser. Autenticati tramite il login web e usa i cookie di sessione con token CSRF.
Cookie: ractermx_session=abc123; X-CSRF-TOKEN: ...
L'API di RacterMX segue le convenzioni RESTful. JSON in ingresso, JSON in uscita. Tutti gli endpoint si trovano sotto /api/v2/ e richiedono l'autenticazione.
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.
Lascia che l'IA gestisca il tuo inoltro e-mail tramite linguaggio naturale
Il MCP Server di RacterMX espone ogni endpoint API come strumento richiamabile dagli agenti IA. Collegalo a Claude, ChatGPT o qualsiasi client compatibile con MCP per gestire domini, alias e inoltro e-mail in modo conversazionale.
// 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.