Parseur

AI document & email parser — extract structured data from any template.

How MailKite fits

Parseur is AI parsing. MailKite delivers parsed JSON to your own webhook + adds sending.

Receive email into Parseur via MailKite

A minimal, copy-paste starter. Swap in your own domain and API key.

webhook.ts
import { verifyWebhook } from "@mailkite/client";

// MailKite POSTs every inbound email at your domain as JSON.
// Point a route at this handler in the MailKite dashboard.
export default async function handler(req: Request) {
const raw = await req.text();
const sig = req.headers.get("x-mailkite-signature") ?? "";

// Reject anything not signed by your webhook secret
const ok = await verifyWebhook(sig, raw, process.env.MK_WEBHOOK_SECRET!);
if (!ok) return new Response("bad signature", { status: 401 });

const email = JSON.parse(raw);
// Route into Parseur: open a ticket, create a task, store a record
await routeIntoName(email); // email.from · email.subject · email.text

return new Response(JSON.stringify({ ok: true }));
}
Read the inbound webhooks guide

Parseur is an AI-powered email and document parser that extracts structured data without template training (Vision AI + Text AI). It supports OCR in 200+ languages, is EU-hosted, and exports to webhooks, Zapier, Make, and n8n.

Key features

Pricing model

Free tier (20 pages/mo) + usage

Category

Inbound & parsing

Email-to-webhook, email-to-JSON, and parsing services.

Related

Similar tools

Try MailKite alongside Parseur.

Point a domain, drop in a webhook URL, and send your first email in minutes. Unlimited domains, no credit card.