Documentation

Everything you need to integrate into your application.

Quick Start

Get up and running with in minutes. Here's a simple example to get you started.

# === DUAL KEY SECURITY ===
curl -X POST https://api.smsly.cloud/v1/email/send \
  -H "X-Smsly-Key-Id: sk_live_xxx" \
  -H "X-SMSLY-SDK-KEY: sdk_live_xxx" \
  -H "Content-Type: application/json" \
  -d '{
    "to": "+1234567890",
    "message": "Your verification code is: 123456"
  }'

Authentication

All API requests require authentication using an API key. Include your API key in the Authorization header:

Authorization: Bearer YOUR_API_KEY

You can generate API keys from your dashboard settings.

API Endpoints

POST/v1/email/send

Send a message or initiate an action

GET/v1/email/status/:id

Check the status of a previous request

GET/v1/email/logs

Retrieve logs and history

Full API Reference

Explore our complete API documentation with detailed request/response examples.

View Full Documentation