API Reference / Endpoints

Create Waitlist

The Create Waitlist endpoint lets you create a new waitlist programmatically — no dashboard step required. The waitlist is created with the same defaults as one created from the dashboard, and signups work immediately via the form-action endpoint or the Add Subscriber endpoint.

This endpoint requires an account API key (wl_acct_…) and is available on every plan, within your plan's waitlist limit.

Want the full picture in one fetch? The one-page integration guide covers every path with copy-paste code · OpenAPI spec · SDK: npm install waitlister

Endpoint Details

  • URL: https://waitlister.me/api/v1/waitlists
  • Method: POST

Request

Headers

code
Content-Type: application/json
X-Api-Key: wl_acct_your-account-api-key

Body Parameters

ParameterTypeRequiredDescription
nameStringYesProduct / waitlist name (max 100 characters)
slugStringNoURL slug for hosted pages. Derived from name when omitted. On collision a numeric suffix (-2, -3, …) is appended
categoryStringNoProduct category
descriptionStringNoInternal description — not shown publicly
referral_rewardsObjectNoReferral program configuration (see below)
validate_emailsBooleanNoValidate email deliverability at sign-up (default true)

referral_rewards Object

FieldTypeDescription
enabledBooleanEnable the referral program (default false)
signup_pointsIntegerPoints awarded on sign-up (default 50)
referral_pointsIntegerPoints awarded per referral (default 30)

Example Request

bash
curl -X POST "https://waitlister.me/api/v1/waitlists" \
  -H "Content-Type: application/json" \
  -H "X-Api-Key: wl_acct_your-account-api-key" \
  -d '{
    "name": "My Product",
    "referral_rewards": { "enabled": true }
  }'

Response

Success Response 201

json
{
  "success": true,
  "data": {
    "waitlist": {
      "id": "aBcDeFgH123",
      "key": "AbC123xYz456",
      "slug": "my-product",
      "name": "My Product",
      "form_action_url": "https://waitlister.me/s/AbC123xYz456",
      "hosted_page_url": null,
      "created_at": 1751700000000
    },
    "notes": "Signups work immediately via form_action_url (whitelist your domain in settings) or POST /api/v1/waitlist/{key}/sign-up with this same account key. The hosted landing page is published from the dashboard."
  }
}

Waitlist Object Fields

FieldTypeDescription
idStringWaitlist document ID
keyStringWaitlist key — use it in every per-waitlist API path
slugStringURL slug of the waitlist
nameStringWaitlist name
form_action_urlStringPoint any HTML form at this URL to collect signups (whitelist your domain in the waitlist settings first)
hosted_page_urlNullAlways null at creation — the hosted landing page is published from the dashboard
created_atNumberCreation timestamp (Unix ms)

Error Responses

Status CodeDescription
400Missing or invalid name, or invalid optional fields
401Missing, invalid, or revoked account API key
403Your plan's waitlist limit is reached — the message states the limit
429Rate limit exceeded (5 requests per minute)

What's Created (and What Isn't)

The waitlist is created with dashboard defaults: referral program (disabled unless requested), thank-you page, email preferences, and analytics counters. Form-action signups, API signups, and thank-you pages work immediately.

The hosted landing page and standalone form are not provisioned — those are designed and published from the dashboard. hosted_page_url is null until then.

Next Steps

Get started for free

Start collecting sign ups for your product launch in minutes — no coding required.