Getting Started
Quick Start Guide
Get up and running with EKDSend in just a few minutes. This guide will walk you through the basics of sending your first message.
Prerequisites
- An EKDSend account (free tier available)
- A verified domain for sending emails
- Basic familiarity with REST APIs
01
02
Get Your API Key
Navigate to your dashboard and generate an API key.
Terminal
curl -X GET "https://es.ekddigital.com/v1/api-keys" \
-H "Authorization: Bearer YOUR_TOKEN"03
Send Your First Email
Use our simple API to send an email in seconds.
Terminal
curl -X POST "https://es.ekddigital.com/v1/emails" \
-H "Authorization: Bearer ek_live_xxx" \
-H "Content-Type: application/json" \
-d '{
"from": "hello@yourdomain.com",
"to": "user@example.com",
"subject": "Welcome!",
"html": "<h1>Hello World</h1>"
}'