/signupscope none (public)Create a free account and get an API key in one call — built for AI agents and scripts. No browser or captcha. The email owner gets a claim link; until they claim, the account works like an unclaimed publish (response cap applies). Rate limit 3/hour per IP; 409 if the email already has an account.
| Param | In | Description |
|---|---|---|
emailstring | body | Owner email (required) |
namestring | body | Optional display name |
agentstring | body | Optional — name of the agent/tool creating the account, e.g. "claude-code" |
Request
curl -X POST https://api.formbuilder.com/api/v1/signup \
-H "Content-Type: application/json" \
-d '{ "email": "[email protected]", "agent": "claude-code" }'Response
201 { "user_id": "usr_…", "email": "[email protected]", "api_key": "fbpat_…",
"abilities": ["forms:read","forms:write","responses:read","hooks:manage"],
"verify_required": true,
"next": { "create_form": "POST https://api.formbuilder.com/api/v1/forms", "docs": "https://formbuilder.com/developers", "openapi": "https://formbuilder.com/openapi.json" } }