API Keys
Generate secure keys to connect external systems to Forge Mail
0Active Keys
0Revoked Keys
0Total API Calls
🔑 Generate New API Key
✅ API Key Created Successfully
⚠️ Copy this key RIGHT NOW. It will never be shown again after you leave this page.
All API Keys
🔑
No API keys yet
📖 Usage Examples
Send a single lead to Forge Mail
# Replace with your actual API key curl -X POST https://mail.nextwaveaisuite.com/.netlify/functions/apiIngest \ -H "Authorization: Bearer frgk_your_key_here" \ -H "Content-Type: application/json" \ -d '{ "email": "john@example.com", "first_name": "John", "state": "Texas", "tags": ["traffic-rom"] }'
Send up to 500 leads in one call
curl -X POST https://mail.nextwaveaisuite.com/.netlify/functions/apiIngest \ -H "Authorization: Bearer frgk_your_key_here" \ -H "Content-Type: application/json" \ -d '{ "leads": [ { "email": "lead1@example.com", "first_name": "Jane" }, { "email": "lead2@example.com", "first_name": "Bob" } ] }'
Success response
{ "success": true, "inserted": 2, "duplicates": 0, "invalid": 0, "message": "2 leads ingested via API key: Traffic Engine" }