Getting started

Setting up a waitlist for your next hit product is simple with Notion!

  1. Connect your notion on simpll.ist

  2. Search for the Notion database you want to use as your waitlist.

    ⭐ We are working on the ability to create these databases for you!

  3. Once you’ve found the list you want to use, select it from the list and you are all set! Checkout the API documentation below to start adding waiters. 👏

⭐ We currently on support low-code options, no-code options are coming soon!

API

Add a new waiter

POST simpll.ist/api/v1/waiter/add

You can add a waiter via a POST request and a JSON body like so:

fetch("<https://simpll.ist/api/v1/waiter/add>", {
	method: "POST",
	headers: {
		"content-type": "application/json"
	},
	body: JSON.stringify({
		api_key: "<your-api-key>",
		waitlist_key: "<waitlist-to-track>",
		email: "<email-to-track>"
	})
}).then((response) => {
	/**
	 * Check if the operation was successful using `response.ok`
	 * ⚠️ No body is returned.
   */
}).catch((error) => /* Handle network errors */)

You can also use application/x-www-form-urlencoded and a raw HTML form like so:

<form action="POST" action="<https://simpll.ist/api/v1/waiter/add>">
	<input type="hidden" name="api_key" value="<your-api-key>">
	<input type="hidden" name="waitlist_key" value="<your-waitlist-key>">
	<input type="email" name="email">
	<button type="submit">Add to waitlist</button>
</form>

A successful form submission using the method above will result in your webpage being re-directed to ...?