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/v1Quick Start
- Create an account at envloped.com
- Get your API key from the dashboard
- Verify your domain to enable sending
- 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
- Authentication - Learn how to authenticate your requests
- Domain Verification - Set up your sending domain
- Send Email API - Full API reference for sending emails