Skip to main content
A list’s form takes a POST from any site, without a token. It is the only way to subscribe someone straight from a browser. The guide Subscription forms explains how to switch it on and gives the HTML ready to copy.

The address

It is shown in the list’s Settings tab. It answers 404 until the form is switched on.

The fields

As application/x-www-form-urlencoded, multipart/form-data or application/json.

The JSON answer

With Accept: application/json, the answer is JSON instead of a redirect: A blocked address answers pending, like an ordinary subscription: the form never reveals that an address is on the suppression list.

React

From a server

Your server can call the form, but every subscription would then come from the same IP address and hit the limit of 10 a minute. On the server, use the API with a token.

Allowed domains

When the list names some, Lekalao compares the browser’s Origin header (or Referer). Subdomains are accepted: mybakery.example covers www.mybakery.example. A call without those headers, from curl for example, is refused.