Get started
ffforms lets your AI agent build web forms for you.
There's no dashboard to log into. Instead, you connect ffforms to an agent like Claude or Cursor once, and from then on you just ask — "make me a signup form," "any new responses?" — and the agent does it through ffforms.
The only page anyone sees in a browser is the finished form that people fill in.
How it works
- Get a key — sign up with an email address (below).
- Connect your agent — add ffforms to Claude, Cursor, or any MCP client.
- Just ask — your agent creates forms, shares links, and reads submissions for you.
Get a key
You need one thing before connecting an agent: an API key. Sign up with your email and you get a working key back right away.
curl -X POST https://ffforms.com/v1/signup \
-H "Content-Type: application/json" \
-d '{ "email": "you@example.com" }'
The response contains your key:
{
"user": { "id": "usr_...", "email": "you@example.com", "verified": false },
"apiKey": "fff_live_..."
}
Copy the apiKey and keep it safe — it's shown once and can't be recovered. You'll paste it into your agent in the next step.
New accounts work immediately with modest limits. Verifying your email later lifts those limits and lets you recover your account.
Once you have your key, connect your agent.
Prefer to write code directly instead of using an agent? The whole service is a plain REST API — see the API Reference.