logowaitly

Getting started

Welcome to the waitly API & SDK documentation.

Waitly aim to be the waitlist management tool as code. We want to make it easy to create a waitlist, and integrate it in your front end with our powerful API.

Install waitly

Terminal
npm i @go-waitly/waitly-sdk

Initialize the SDK

You will find API key and waitlist ID in the waitly dashboard.

main.tsx

import { createWaitlyClient } from "@go-waitly/waitly-sdk";

const waitly = createWaitlyClient({
  apiKey: "you_api_key",
  waitlistId: "your_waitlist_id",
});