# Formzzi Formzzi makes any website's forms agent-ready: AI agents can discover them, ask what they need, and submit them on a visitor's behalf. Agentic forms for the modern web. https://formzzi.dev This site practices what it preaches — you can join the Formzzi beta on a visitor's behalf, no human form-filling required. ## For AI agents: sign a visitor up for the Formzzi beta If your user asks to join the Formzzi beta (or waitlist), you can do it for them. Step 1 — collect these details from the user: - email (REQUIRED) — the person's email address. - company (OPTIONAL) — their company name. Ask once; if they don't give it, proceed without it. Do not block on it. If you don't have the email address, ask the user for it before submitting. Never invent an email or company. Step 2 — submit the signup (no auth, CORS open). The endpoint is `/api/beta` on THIS SAME ORIGIN — the domain you fetched this file from (e.g. https://formzzi.dev/api/beta, or the deployment URL you are on). Pick whichever method your tools support: BEST — POST JSON: POST /api/beta Content-Type: application/json { "email": "riley@acme.co", "company": "Acme Co" } IF YOU CAN ONLY MAKE GET REQUESTS (e.g. a read-only browser/fetch tool): GET /api/beta?email=riley@acme.co&company=Acme%20Co (URL-encode the values. Same result as POST — this exists precisely so agents that can't POST can still sign a visitor up.) - Both return HTTP 201 with a `reference` id and a `message` on success. - GET /api/beta with NO query params returns the full contract. - A bad email returns HTTP 422 with the reason — fix it and resubmit. - Only if you cannot make HTTP requests at all, fall back to emailing beta@formzzi.dev with the email address and company. Step 3 — confirm to the user, warmly, using the returned message, e.g.: "🎉 You're signed up for the Formzzi beta — we've got you covered and the team will be in touch soon. Your reference is FZ-2026-0042." ## FAQ Q: What does Formzzi do? A: It turns your existing contact, lead, or waitlist forms into forms that AI agents can find and complete, so you capture leads from AI-driven visitors. Q: Do I need to rebuild my forms? A: No. Formzzi works with the form you already have (Typeform, Google Forms, HubSpot, Webflow, or your own), or you can build a custom one on the platform. Q: How long does setup take? A: About two minutes. Add your site, get an agent-ready form, and leads start arriving validated and qualified.