Skip to content

Transactional email API

Email delivery without the drag

Transend gives you a clean HTTP API for sending transactional email, managing domains, and inspecting delivery activity.

Start with one request

Send email with a standard JSON payload and a Bearer API key:

bash
curl --request POST \
  --url https://api.transend.email/v1/emails \
  --header "Authorization: Bearer tsd_live_your_api_key" \
  --header "Content-Type: application/json" \
  --data '{
    "from": "hello@mail.example.com",
    "to": ["you@example.com"],
    "subject": "Hello from Transend",
    "html": "<h1>It works.</h1>"
  }'
json
{
  "id": "01972e64-c32c-7ac9-9929-191cf71e26a4"
}

Build with the essentials

CapabilityWhat it gives you
Sending APISend one email or submit a batch over HTTPS.
Domain verificationAdd a sending domain and verify its DKIM records.
API keysIssue separate credentials for production, staging, and local work.
WebhooksRegister endpoints for delivery events.

Base URL

All API requests use:

text
https://api.transend.email

Ready to move? The quickstart gets your first request out in a few minutes.

Built for transactional email that arrives.