# BuzzList > Beautiful waitlists that grow themselves. Branded pages, referral mechanics, and batch invites for indie hackers and creators launching their next thing. BuzzList is a hosted waitlist platform. Creators sign up, build a branded waitlist page at `buzzlist.app/`, and share the link. Visitors join via email and can refer others. Owners batch-invite signups when ready to launch. ## Product - [Home](https://buzzlist.app/): Marketing overview - [Pricing](https://buzzlist.app/pricing): Free, Basic ($9/mo), Pro ($19/mo) - [API Reference](https://buzzlist.app/docs/api): Human-readable docs for the public API - [Login](https://buzzlist.app/login): Sign up or log in (magic link) ## Public waitlist pages Each waitlist lives at `https://buzzlist.app/` and is fully server-rendered. The page exposes the waitlist name, headline, description, branding, and current signup count. ## Public API - `POST https://buzzlist.app/api/waitlist//signup` — add a signup. Body: `{"email": "...", "name": "...", "ref": "..."}`. Returns 201 with `{signup, totalSignups}`. Rate-limited per IP. - `GET https://buzzlist.app/api/waitlist//position?email=` — fetch a signup's current position in the queue. curl example: ``` curl -X POST https://buzzlist.app/api/waitlist//signup \ -H "content-type: application/json" \ -d '{"email":"someone@example.com"}' ``` ## More detail - [llms-full.txt](https://buzzlist.app/llms-full.txt): Full marketing copy + complete API reference inline