Quick start

Send your first email in a few lines.

Install the SDK, create an inbox, and send an email. Inbound replies arrive as webhooks automatically.

agent.py
from deadsimple import DeadSimple

client = DeadSimple(api_key="dse_...")
inbox = client.inboxes.create(name="support-agent")

inbox.send(
    to="customer@example.com",
    subject="Re: Your request",
    body="Hi — we've looked into this and here's what we found..."
)

API overview

RESTful, JSON in and out, organized around resources.

The API covers inboxes, messages, threads, contacts, domains, webhooks, templates, drafts, tracking, and multi-tenant pods. Here are the core endpoints.

core endpoints
POST   /inboxes              # Create an inbox
GET    /inboxes              # List inboxes
POST   /inboxes/:id/send    # Send an email
GET    /inboxes/:id/messages# List messages
GET    /threads             # List conversation threads
POST   /webhooks            # Register a webhook
POST   /domains             # Add a custom domain
GET    /contacts            # List contacts
POST   /templates           # Create an email template
POST   /drafts              # Create a draft for review

Ready to build?

Start with the getting started guide, then explore the full API reference for endpoint details.

Open API Reference Create Free Account