REST API
Get Count
GET /v1/waitlist/:slug/count endpoint. Retrieve the total subscriber count for your waitlist project. Authenticated via Bearer token, returns JSON with the current signup total.
Returns the total number of subscribers for the waitlist identified by the project slug.
curl https://api.waitkit.dev/v1/waitlist/my-project/count \
-H "Authorization: Bearer wk_..."Response
All endpoints return a uniform JSON envelope.
{
"status": "success",
"message": "OK",
"data": {
"count": 42
},
"timestamp": 1686500000000
}Status codes
| Code | Description |
|---|---|
200 | Success |
401 | Missing or invalid API key |
404 | Project not found |
Join Waitlist
POST /v1/waitlist/:slug/join endpoint. Add a subscriber email to your waitlist with name, source tracking, and custom metadata. Request params, response format, and HTTP status codes.
MCP Server
Manage WaitKit from your AI coding agent. The waitkit-mcp server gives Claude Code, Cursor, Windsurf, VS Code, Zed, Codex, and other MCP clients safe, programmatic access to your projects, subscribers, analytics, and campaigns.
