Waitlist
Sign up for notifications about Roots availability and updates.
No auth required. The waitlist endpoint is public and does not require an API key or credits.
Join the waitlist
POST
/waitlist
Add your email to the waitlist. No authentication required. No credit cost.
Request body
| Field | Type | Required | Description |
|---|---|---|---|
email | string | yes | A valid email address. |
Response:
{
"status": "ok",
"message": "You have been added to the waitlist."
}
Rate limiting
This endpoint is rate limited to 5 requests per hour per IP address. If you exceed the limit, you will receive a 429 Too Many Requests response.
Duplicate emails
Submitting an email that is already on the waitlist is handled gracefully and returns a success response without creating a duplicate entry.
Examples
Sign up
curl -X POST https://roots.chatforest.com/api/v1/waitlist \
-H "Content-Type: application/json" \
-d {email: you@example.com}