Quick Start
Get up and running with SendLiberty in under 5 minutes.
1Connect your Gmail
Navigate to the Gmail Accounts page in your dashboard and click Connect New Account to authorize.
2Generate an API Key
Navigate to the API Keys page in your dashboard and click Generate New Key. Copy the key safely.
3Send your first email
Make a standard HTTP POST request from your application:
curl -X POST https://api.sendliberty.com/api/send \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"from": "sender@gmail.com",
"to": "recipient@example.com",
"subject": "Welcome to SendLiberty!",
"html": "<p>This email was sent via SendLiberty REST API.</p>"
}'