Point any HTML form at one endpoint, use the visual builder, or POST JSON from your app. Submissions land in your inbox and a clean dashboard — with spam protection and analytics built in.
curl -X POST https://forms.pixelverse.tech/api/forms/YOUR_FORM_ID/submit \
-H "Content-Type: application/json" \
-d '{"name":"Ada","email":"ada@example.com","message":"Hello!"}'
← { "ok": true, "id": "sub_8f2c…" } ✦ owner + sender emailedOne endpoint, any form
Every form you create gets its own stable POST URL. Set it as your <form action>, or send JSON from your framework of choice - React, Vue, Svelte, a static site, a mobile app. PixelVerse Forms validates, stores, and routes the submission for you.
multipart/form-data and JSON payloadsasync function onSubmit(data) {
const res = await fetch(
"https://forms.pixelverse.tech/api/forms/a3f1.../submit",
{
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify(data),
}
);
return res.json(); // { ok: true, id: "sub_..." }
}Inbox-native
Every submission arrives as a clean, threaded email - the instant it's sent. Read it. Reply to it. Forward it to a teammate. Find it again months later with a search. It behaves exactly like the email you already manage all day, because that is all it is. The dashboard is there when you want more - you are never required to open it.
New submission · Contact - Marketing Site
A dashboard that respects your time
Server-side aggregation means your numbers are ready the moment the page loads. Track submission volume, scan the latest entries, organise forms into folders, and drill into any single submission - without a spinner in sight.
Overview
Your workspace at a glance
Latest submissions
Why teams choose it
Submissions arrive as ordinary email you can read and reply to. Validation, spam filtering, and delivery all happen automatically behind the scenes. The dashboard is there when you want the full picture - on a normal day, you won't need to open it.
How it works
Normally, even a simple contact form means building a server, a database, and email sending - then keeping it all running. PixelVerse Forms replaces every part of that with one URL. Here is the whole process, start to finish.
Sign up, add a form, and you instantly have a submission URL that belongs to it. Nothing to install or deploy.
Paste it into your form's action, or POST to it from your code. That is the only setup, and you only do it once.
We check the submission for spam, save it securely, and send the emails - automatically, the instant it arrives.
It reaches you as a normal email, and it is saved in your dashboard. Read and act on it wherever suits you.
Every submission is a clean email. Open it, read every field, and reply to the person or forward it to your team - exactly like any other message you handle.
Need the bigger picture? Open the dashboard to browse every submission, search past entries, organise forms into folders, and export your data.
The platform
Everything below ships in the box. There is nothing to install, no plan to upgrade to, and no add-on to buy.
A stable POST URL for every form. Wire it up once and forget about it.
Owner alerts and sender confirmations sent the moment a form is submitted.
A built-in honeypot plus per-IP and per-email rate limiting. No captcha.
Drag-and-drop fields and publish a hosted form with a shareable link.
Aggregated totals and trends computed on the server - instant on load.
Group forms by project or client and keep a growing workspace tidy.
Encrypted in transit and at rest, with verified email and session auth.
Adjust the wording and branding of every notification and receipt.
Served from the edge with a sub-200ms median submission response.
Quickstart
Use a plain HTML form, or post JSON from your app. Both hit the same endpoint and behave identically.
<form method="POST"
action="https://forms.pixelverse.tech/api/forms/YOUR_FORM_ID/submit">
<input name="name" placeholder="Your name" />
<input name="email" type="email" />
<textarea name="message"></textarea>
<button>Send</button>
</form>FAQ
No. PixelVerse Forms is the backend. You point your form at an endpoint and we handle validation, storage, email delivery, and spam filtering for you.
No. Every submission is emailed to you the moment it arrives, formatted as a clean, threaded message you can read, reply to, forward, and search like any other email. The dashboard is there when you want history, analytics, or organisation - but day to day, your inbox is all you need.
Yes. Any client that can send an HTTP POST works - plain HTML forms, React, Vue, Svelte, static sites, mobile apps. We accept both form-encoded and JSON payloads.
When a form is submitted we email you a notification containing the full submission. If you enable confirmation emails, the person who submitted the form also receives an automated receipt of their own entry.
Every form includes a built-in honeypot field, plus per-IP and per-email rate limiting. It keeps automated junk out without forcing your visitors through a captcha.
Yes. If you would rather not write any HTML, the drag-and-drop builder lets you assemble a form and publish it as a hosted page with a shareable link.
PixelVerse Forms is free during public preview - no credit card required. You can create an account and start collecting submissions right away.
Built by PixelVerse Digital
PixelVerse Forms is a product by PixelVerse Digital - the studio behind pixelverse.tech. We built it to power the contact and lead forms across our own global portfolio of client websites and digital infrastructure. It isn't a side experiment: it's the tool our team depends on in production every day, which is why it's robust, deeply customisable, and held to the standard that real client work demands.
Visit pixelverse.techRunning live on real client sites across our portfolio - not a demo.
Shaped by the needs of agency work, from templates to routing.
Built and improved by the same people who rely on it daily.
Create an account, grab your endpoint, and start collecting submissions today.