WaitKitWaitKit
REST API

REST API

WaitKit REST API reference. Base URL, Bearer token authentication, rate limiting, and available endpoints for collecting waitlist signups and querying subscriber counts.

The REST API is the foundation of all WaitKit integrations. The JavaScript SDK wraps these endpoints directly.

Base URL

https://api.waitkit.dev

Authentication

All public endpoints require an API key sent as a Bearer token in the Authorization header:

Authorization: Bearer wk_...

API keys are generated per project from the dashboard. Each request without a valid key returns 401 Unauthorized.

Content type

All requests and responses use application/json.

Rate limiting

Rate limits apply per API key. Exceeded limits return 429 Too Many Requests with a Retry-After header.

Endpoints

MethodPathAuthDescription
POST/v1/waitlist/:slug/joinAPI keyAdd a subscriber
GET/v1/waitlist/:slug/countAPI keyGet subscriber count

See the individual endpoint pages for request and response schemas.

On this page