Sviluppa con RacterMX

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.

Inizia

Due modi per integrarsi con RacterMX

📡

REST API + Swagger

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 MCP

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ù →

Autenticazione

Due metodi di autenticazione supportati

🔑 API Key (Consigliato)

Genera le API Key dalla tua dashboard. Passale come Bearer token nell'header Authorization.

Authorization: Bearer sk_live_abc123...

🍪 Autenticazione di sessione

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: ...

Invia un'e-mail in pochi secondi

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.

  • URL base: https://ractermx.com/api/v2
  • Content-Type: application/json
  • Limite di frequenza: 100 richieste/minuto
  • Tutti i timestamp in 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>"
}

Riferimento endpoint API

60+ endpoints covering domains, aliases, email sending, webhooks, blocklists, SMTP credentials, DMARC analytics, security posture, and more. All documented with interactive try-it-out.

📖 Documentazione interattiva completa (Swagger)

MCP Server per agenti IA

Lascia che l'IA gestisca il tuo inoltro e-mail tramite linguaggio naturale

Model Context Protocol

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.

  • Gestisci domini e alias
  • Cerca e filtra i log e-mail
  • Crea e testa i webhook
  • Monitora statistiche e quota
  • Configura le credenziali SMTP
  • Gestisci liste di blocco e conservazione
// 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 account to get your API key and start integrating RacterMX in minutes.