Form.taxi Create Endpoint API (1.0.0)

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.

Create a new form endpoint

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.

Request Body schema: application/json
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.

Responses

Request samples

Content type
application/json
{
  • "email": "user@example.com",
  • "form_name": "Contact Form",
  • "website_url": "https://example.com",
  • "language": "en",
  • "timezone": "Europe/Vienna"
}

Response samples

Content type
application/json
{}