WaitKitWaitKit
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

CodeDescription
200Success
401Missing or invalid API key
404Project not found

On this page