API reference

Contact relay

The endpoint behind the contact form. It relays a sales or support message to the team. It applies a honeypot check and a rate limiter, and it is explicitly not a channel for PHI.

POST/api/contact

Request body

FieldTypeStatusDescription
namestringrequiredSender's name.
emailstringrequiredReply-to email address.
subjectstringrequiredShort subject line.
messagestringrequiredThe message body. Do not include PHI.
websitestringoptionalHoneypot. Must be empty — submissions that fill it are dropped.

Response

Returns { "status": "ok" } on success. Validation failures return 400; exceeding the rate limit returns 429.

Examples

curl -s https://api.sifthealth.app/api/contact \
  -H "Content-Type: application/json" \
  -d '{
    "name": "Jordan Lee",
    "email": "jordan@example.com",
    "subject": "Agency plan question",
    "message": "How does white-label PDF branding work?",
    "website": ""
  }'

Not for PHI

This relay is for sales and support questions only. Never submit protected health information through it. There are also no phone numbers anywhere in Sift Health by design — support is handled in writing.