← Back to site
Docs • v0

API Reference

Emails API

Send and manage emails

Endpoint

BASH
POST https://api.pulsesend.dev/emails

Request

JSON
{
  "to": "string | string[]",
  "subject": "string",
  "html": "string",
  "tracking": { "opens": true, "clicks": true }
}

Response

JSON
{ "id": "msg_123", "status": "queued" }

Errors

  • 401 Unauthorized — invalid or missing API key
  • 422 Unprocessable Entity — invalid payload
  • 5xx — transient error, retry with backoff
Was this helpful? Coming soon.