A secure, serverless API for receiving and managing lead data.
All endpoints require an API key in the X-API-Key header.
See README.md for complete API documentation.
curl -X POST https://datamanagementapiprod.vercel.app/api/leads \
-H "X-API-Key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"firstName": "John",
"lastName": "Doe",
"email": "john@example.com",
"phone": "1234567890",
"city": "New York",
"state": "NY",
"zip": "10001",
"vertical": "insurance"
}'