Skip to main content
POST
/
waitlist
/
join
Join waitlist
curl --request POST \
  --url https://api.wacht.dev/waitlist/join \
  --header 'Content-Type: application/x-www-form-urlencoded' \
  --data email=user@example.com \
  --data first_name=John \
  --data last_name=Doe
{
  "success": true,
  "message": "You have been added to the waitlist"
}

Body

application/x-www-form-urlencoded
email
string<email>
required

Email to add to waitlist

Example:

"user@example.com"

first_name
string

First name

Example:

"John"

last_name
string

Last name

Example:

"Doe"

Response

Successfully added to waitlist

success
boolean
Example:

true

message
string
Example:

"You have been added to the waitlist"