Documentation
Complete guides, API references, and technical documentation for LandinEmail.
Getting Started
Everything you need to know to get up and running with LandinEmail.
API Reference
Complete API documentation with examples and code samples.
Integrations
Learn how to integrate LandinEmail with your existing tools and services.
Email Templates
Create beautiful, responsive email templates with our editor.
Automation
Set up powerful automated email workflows and sequences.
Analytics & Reporting
Track performance and analyze your email marketing campaigns.
API Examples
Send Email Campaign
curl -X POST https://api.landinemail.com/v1/campaigns \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"name": "Welcome Campaign",
"subject": "Welcome to our newsletter!",
"from_email": "hello@yourcompany.com",
"from_name": "Your Company",
"template_id": "template_123",
"recipients": ["user@example.com"]
}'
Create Contact
curl -X POST https://api.landinemail.com/v1/contacts \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"email": "user@example.com",
"first_name": "John",
"last_name": "Doe",
"tags": ["newsletter", "customer"]
}'
Get Campaign Analytics
curl -X GET https://api.landinemail.com/v1/campaigns/123/analytics \
-H "Authorization: Bearer YOUR_API_KEY"