API Reference
The Splashify Pro Email API is RESTful, accepts JSON-encoded request bodies, returns JSON-encoded responses, and uses standard HTTP response codes + verbs.
Base URL
https://apis.splashifypro.com/api/v1/partner/emailAll endpoints documented in this reference are relative to this base URL.
Authentication
Bearer token in the Authorization header:
Authorization: Bearer pk_live_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxSee Authentication for key generation, rotation, and rate-limit details.
Request format
POST + PATCH + PUT bodies are JSON. Set Content-Type: application/json.
Field names are snake_case. Required fields raise
400 INVALID_REQUEST when missing.
Response format
Every response is JSON. Successful responses include success: true:
{
"success": true,
"data": { ... }
}Errors include a stable error code + a human-readable message:
{
"success": false,
"error": "FROM_NOT_VERIFIED",
"message": "From address is not on a verified identity."
}See Errors for the full list.
Resources
| Resource | Endpoints |
|---|---|
| Emails | /send, /send-raw, /send-template, /send-bulk, /emails/:id |
| Templates | CRUD + preview |
| Identities | List, create, get, verify, delete |
| Configuration Sets | CRUD + multi-tenant attribution |
| Event Destinations | Webhook destinations attached to config sets |
| Suppression | List, get, put, delete |
| Quotas & Stats | Send quota, statistics, reputation, events |
| Production Access | Sandbox → production lifecycle |
Versioning
The API is versioned in the URL — /api/v1/. We will not introduce
breaking changes within a version. New optional fields, new
endpoints, and new event types may land at any time.
If we ever ship /api/v2/, we’ll keep /api/v1/ operational for
at least 12 months and announce the deprecation timeline at least
90 days in advance.
Idempotency
Send endpoints are NOT idempotent — duplicate calls produce
duplicate sends. Implement application-level dedup against your
business identifier (charge_id, signup_id, etc.) before calling
/send.
Idempotency-key support via Idempotency-Key header is on the
roadmap.