Skip to content
UseWait Docs
Esc
navigateopen⌘Jpreview
On this page

Quickstart

From API key to live waitlist page in two requests.

Get a key

Create an API key in Dashboard, Settings, API Keys. See Authentication.

Create a waitlist

curl -X POST https://usewait.com/api/v1/waitlists \
  -H "Authorization: Bearer uw_live_YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "Acme Robotics",
    "slug": "acme-robotics",
    "seoTitle": "Acme Robotics: join the waitlist"
  }'

The page is live at https://usewait.com/w/acme-robotics immediately, using the default template.

Check your signups

curl https://usewait.com/api/v1/waitlists/acme-robotics/entries \
  -H "Authorization: Bearer uw_live_YOUR_KEY"

Where to go next

Was this page helpful?