Développez avec RacterMX
RESTful API, interactive Swagger docs, webhooks, and an MCP server for AI agents. Everything you need to integrate confidentialité-first e-mail transfert into your stack.
Commencer
Two ways to integrate with RacterMX
REST API + Swagger
Full OpenAPI 3.0 spec with interactive try-it-out. Manage domaines, aliases, e-mail logs, webhooks, blocklists, SMTP credentials, and more.
Open API Explorer →Serveur MCP
Model Context Protocol server for AI agents. Let Claude, GPT, or your own LLM manage e-mail transfert through natural language.
Learn more →Authentification
Two supported authentification methods
Clé API (recommandé)
Generate API keys from your tableau de bord. Pass them as a Bearer token in the Authorization header.
Authorization: Bearer sk_live_abc123...
Session Auth
For browser-based integrations. Authenticate via the web login and use session cookies with CSRF tokens.
Cookie: ractermx_session=abc123; X-CSRF-TOKEN: ...
Send an E-mail in Seconds
The RacterMX API follows RESTful conventions. JSON in, JSON out. All endpoints live under /api/v2/ et nécessitent une authentification.
- Base URL:
https://ractermx.com/api/v2 - Content-Type: application/json
- Rate limit: 100 requests/minute
- Tous les horodatages en UTC (ISO 8601)
# 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>" }
Référence des endpoints API
Plus de 60 endpoints couvrant les domaines, alias, envoi d'e-mails, webhooks, listes de blocage, identifiants SMTP, analytique DMARC, posture de sécurité et plus encore. Le tout documenté avec un essai interactif.
MCP Server for AI Agents
Let AI manage your e-mail transfert through natural language
Model Context Protocol
The RacterMX MCP server exposes every API endpoint as a tool that AI agents can call. Connect it to Claude, ChatGPT, or any MCP-compatible client to manage domaines, aliases, and e-mail transfert conversationally.
- Manage domaines and aliases
- Search and filter e-mail logs
- Create and test webhooks
- Monitor statistics and quota
- Configure SMTP credentials
- Manage blocklists and retention
// 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"
Ready to build?
Create a free compte to get your API key and start integrating RacterMX in minutes.