Getting started with the API
SplashSend has a REST API that lets you manage contacts, trigger sends, and integrate with your own systems.
Getting your API key
- Go to Setup in your dashboard
- Find the API section
- Generate a new API key
- Copy it and store it securely — you won’t be able to see it again
Authentication
Include your API key as a Bearer token in the Authorization header of every request:
Authorization: Bearer sk_live_your_api_key_here
Common endpoints
GET /api/v1/contacts— List your contactsPOST /api/v1/contacts— Create a new contactPUT /api/v1/contacts/:id— Update a contactDELETE /api/v1/contacts/:id— Delete a contact
For full API documentation, visit the Developers page.