Waitlist

Join the pre-launch waitlist and read your position

Idempotent: re-submitting an address returns the same referral code and the current position with `already_joined: true`. Answers 200 rather than 201 for that reason — a repeat join creates nothing. Pass `ref` to credit the member whose share link brought you; an unknown or self-referring code is ignored.

POST/waitlist

Idempotent: re-submitting an address returns the same referral code and the current position with already_joined: true. Answers 200 rather than 201 for that reason — a repeat join creates nothing. Pass ref to credit the member whose share link brought you; an unknown or self-referring code is ignored.

Authorization

bearerAuth
AuthorizationBearer <token>

In: header

Query Parameters

organization?string

Organization slug (OAuth actors with several orgs); API keys imply theirs.

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

curl -X POST "https://example.com/waitlist" \  -H "Content-Type: application/json" \  -d '{    "email": "string",    "ref": "string"  }'
{  "position": 0,  "total": 0,  "referral_code": "string",  "referral_count": 0,  "already_joined": true}