Skip to main content
POST
/
api
/
waitlist
Join Waitlist
curl --request POST \
  --url https://api.example.com/api/waitlist \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "email": "<string>"
}
'
{
  "message": "You're on the list!"
}

Request

name
string
required
Your full name.
email
string
required
Your email address. Must be a valid email format.

Example request

curl -X POST https://encrata.com/api/waitlist \
  -H "Content-Type: application/json" \
  -d '{"name": "John Doe", "email": "john@example.com"}'

Response

message
string
Confirmation message.
{
  "message": "You're on the list!"
}