Skip to main content

Overview

Ensend ships primarily as a dependency-free REST API and supports requests from any valid HTTP Client.
API BASEURL
https://api.ensend.co
To enhance your developer experience, we have also provided SDKs for major programming languages. This guide includes installation and configuration steps for these SDKs.
If you’re not looking to use the SDK right now, you can send emails using our SMTP Server. Alternatively, you can consume the REST API. See how to authenticate your requests. All available endpoints are documented in the API Reference.
1

Install from the package manager

bun add ensend@latest
2

Initialize the SDK

ensend.config.ts
import { Client } from "ensend"

const ensend = new Client({
  secret: "your_project_secret",
});

export ensend
3

Make for first API Call

Send an email, sms, whatsapp or push notification
All set here … You are now ready to obtain your project secret.
Last modified on February 11, 2026