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/contactRequest body
| Field | Type | Status | Description |
|---|---|---|---|
| name | string | required | Sender's name. |
| string | required | Reply-to email address. | |
| subject | string | required | Short subject line. |
| message | string | required | The message body. Do not include PHI. |
| website | string | optional | Honeypot. 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.