Superhuman

Keyboard-first premium email client for high-performance teams.

How MailKite fits

Superhuman is a premium client over Gmail/Outlook. MailKite is developer email infra.

Receive email into Superhuman 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 Superhuman: 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

Superhuman is a keyboard-first premium email client ($30/seat/month) with snippets, templates, a command palette, read receipts, AI inbox triage, and follow-up reminders. It integrates with Gmail and Outlook.

Key features

Pricing model

Subscription ($30/seat/month)

Category

Email clients & webmail

Apps and open-source UIs for reading and sending mail.

Related

Similar tools

Try MailKite alongside Superhuman.

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