POST
/
api
/
waitlist
/
join
{
  "email": "newuser@example.com",
  "referralCode": "CRYPTO123"
}
{
  "success": true,
  "data": {
    "position": 5234,
    "referralCode": "MOON456",
    "message": "Successfully joined the waitlist! You are #5234 in line."
  }
}

Body

email
string
required
Email address to register
referralCode
string
Optional referral code from another user

Response

position
number
Position in the waitlist queue
referralCode
string
Your unique referral code to share
message
string
Success message
{
  "email": "newuser@example.com",
  "referralCode": "CRYPTO123"
}
{
  "success": true,
  "data": {
    "position": 5234,
    "referralCode": "MOON456",
    "message": "Successfully joined the waitlist! You are #5234 in line."
  }
}
Email addresses must be unique. Attempting to join with an already registered email will return an error.

Body

application/json

Response

200
application/json

Successfully joined waitlist

The response is of type object.