API Reference

Integrate JustMailIt into your applications

Authentication

All API requests require Firebase authentication token in the Authorization header:

Authorization: Bearer YOUR_FIREBASE_TOKEN

Endpoints

GET /api/sent_emails

Retrieve user's sent email history

Response: { "emails": [...], "stats": {...} }
POST /send

Send an email automation

Body: { "subject": "", "body": "", "recipients": [] }
GET /api/sent_email_stats

Get email statistics and analytics

Response: { "sent": 0, "delivered": 0, "opened": 0 }
GET /get_profile

Retrieve user profile data

Response: { "name": "", "email": "", "resume": "" }
Note: API is currently in beta. Contact us for API key access.