Submit endpoint
https://formiix.site/api/submit accepts JSON. Authenticate with x-api-key or the key query parameter.
API & integrations
Formiix is a drop-in form backend. POST JSON to one endpoint with your API key. Use the hosted builder, or keep your own UI and let Formiix store and analyze submissions.
https://formiix.site/api/submit accepts JSON. Authenticate with x-api-key or the key query parameter.
Optionally email yourself when a new submission arrives. Formiix stores the response in your dashboard; you can export JSON when you need it elsewhere.
If you can call fetch, you can use Formiix. Copy a snippet below and replace the API key from your dashboard.
Your forms deserve a modern backend. Plug Formiix into HTML, React, Next.js, or Node in minutes with one endpoint and clean payload handling.
const API_KEY = "YOUR_FORMIIX_API_KEY";
const url = `https://formiix.site/api/submit?key=${API_KEY}`;
const data = { name, email };
await fetch(url, {
method: "POST",
headers: {
"Content-Type": "application/json",
"x-api-key": API_KEY,
},
body: JSON.stringify(data),
});