Document data extraction (PDF/Word/images → structured data).
Docparser is document-focused. MailKite delivers parsed inbound email JSON to your webhook.
A minimal, copy-paste starter. Swap in your own domain and API key.
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 Docparser: 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 }));
} Docparser (SureSwift Capital, sibling to Mailparser) is a document data extraction tool for PDFs, Word, and images. It accepts email attachments as an input source and exports to Excel/CSV/JSON plus Zapier/Workato/Power Automate.
Free trial + tiered
Inbound & parsing
Email-to-webhook, email-to-JSON, and parsing services.
Point a domain, drop in a webhook URL, and send your first email in minutes. Unlimited domains, no credit card.