Download OpenAPI specification:
API for Form.taxi - a GDPR-compliant form backend service. This endpoint allows tools and AI agents to programmatically create a form endpoint without prior authentication.
Creates a new user account (if the email is not yet registered) and a form endpoint. Returns the endpoint URL that can be used as the action attribute of an HTML form. No authentication required.
| email required | string <email> Email address used as the destination for form submissions and as the username for the new account. |
| form_name required | string Name of the form (e.g. "Contact Form"). |
| website_url | string <uri> URL of the website where the form will be used (optional). |
| language required | string Enum: "de" "en" Language for the account and email notifications. |
| timezone | string IANA time zone identifier (optional). Defaults to UTC if not provided. |
{- "email": "user@example.com",
- "form_name": "Contact Form",
- "language": "en",
- "timezone": "Europe/Vienna"
}{- "success": true,
}