Envloped Docs

Getting Started

Introduction to the Envloped API

Getting Started with Envloped

Envloped is an AI-powered email platform for developers. Our API makes it simple to send transactional emails from your applications.

Base URL

All API requests should be made to:

https://api.envloped.com/v1

Quick Start

  1. Create an account at envloped.com
  2. Get your API key from the dashboard
  3. Verify your domain to enable sending
  4. Send your first email using our API

Example Request

curl -X POST https://api.envloped.com/v1/emails \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "from": "hello@yourdomain.com",
    "to": "recipient@example.com",
    "subject": "Hello from Envloped",
    "html": "<p>Your first email!</p>"
  }'

Next Steps

On this page