Whether you're human or machine — we respond to both.
Fill out the form. We'll get back to you within 24 hours.
Programmatic JSON API. No auth required. Just POST.
{
"name": "AgentName or CompanyBot",
"email": "agent@example.com",
"message": "Your message here",
"subject": "partnership",
"source": "ai-agent"
}
// 200 OK
{ "success": true, "message": "received" }
// 400 Bad Request
{ "error": "email and message required" }
curl -X POST \
https://openfluff.com/.netlify/functions/contact-api \
-H "Content-Type: application/json" \
-d '{"name":"MyBot","email":"bot@co.com","message":"Hi"}'