Breaking
Inngest raises $21M Series A led by Altimeter 100M+ executions processed per day SDKs shipping in TypeScript, Python & Go AgentKit brings durable execution to AI agents ~10,000 Next.js developers on board Backed by a16z, GGV & Vercel's Guillermo Rauch SoundCloud, Resend & Replit run on Inngest Inngest raises $21M Series A led by Altimeter 100M+ executions processed per day SDKs shipping in TypeScript, Python & Go AgentKit brings durable execution to AI agents ~10,000 Next.js developers on board Backed by a16z, GGV & Vercel's Guillermo Rauch SoundCloud, Resend & Replit run on Inngest
Company Dossier · Developer Infrastructure
Inngest logo
The Inngest mark. A queue you never have to look at - which is, roughly, the entire pitch. Photographed against San Francisco fog and $30M of conviction.

Inngest.

The durable execution platform that turns flaky background jobs, cron scripts, and misbehaving AI agents into workflows that simply do not lose their place.

Founded 2021 HQ San Francisco Raised ~$30M Team ~27 Series A $21M · 2025
100M+
Executions / Day
~10K
Next.js Developers
3
Language SDKs
$30M
Total Raised
The Profile

A Company Built to Make Infrastructure Disappear

Here is a thing that is true about almost every software company: at some point, an engineer sits down to write a small, honest piece of code - send this email, resize this image, charge this card - and then spends the next three weeks building the machinery around it. A queue. A retry loop. A cron job. A dead-letter dashboard nobody looks at until it is 3am and everything is on fire. The original code was five lines. The scaffolding was five hundred.

Inngest exists because two engineers decided this was a bad trade and, unusually, did something about it. Tony Holdstock-Brown, formerly of Docker, and Dan Farrelly, formerly the CTO of Buffer, founded the company in San Francisco in 2021 with a proposition that sounds almost too tidy: what if reliability were just a property of your code, the way a type is, rather than a separate system you have to operate?

"Developers shouldn't be configuring and managing queues themselves in 2024." - Matthew Drooker, CTO, SoundCloud

What It Actually Does

The technical heart of Inngest is durable execution. You write a function. You break it into steps. Each step is a small, transactional unit that Inngest remembers. If step three fails, Inngest retries step three - it does not re-run steps one and two, does not re-charge the card, does not re-send the email. State is persisted. A function can go to sleep for a week and wake up exactly where it left off, which is the kind of thing that sounds trivial until you have tried to build it yourself.

Around that core sits what the company calls flow control: concurrency limits, per-tenant fairness so one noisy customer cannot starve the rest, rate limiting, throttling, debouncing, batching, and prioritization. These are the unglamorous levers that separate a demo from a system that survives contact with real traffic. Inngest turns each of them into a line of configuration rather than a weekend of plumbing.

The delivery mechanism is deliberately contrarian. Inngest invokes your code over HTTP. There is no worker fleet to run, no long-lived pool of processes to babysit - a pointed contrast with Temporal, the heavyweight incumbent in this space. Your functions live wherever you already deploy: Vercel, AWS, Cloudflare, Netlify, a laptop. The core engine is open source, so you can run the entire thing locally and watch it work.

"We ended up doing a Python SDK and a Go SDK. You can do live language migrations without shutting down functions." - Tony Holdstock-Brown, Co-Founder & CEO

The AI Turn

Then the ground shifted, as it does. AI agents turned out to be, from an infrastructure standpoint, exactly the kind of long-running, failure-prone, wait-for-a-human, call-six-tools workload that durable execution was built for. An agent that times out halfway through a task, or needs to pause for a day while a person approves something, is precisely the problem Inngest already solved for ordinary backends.

So in 2025 the company shipped AgentKit, a TypeScript framework for building networks of agents with deterministic routing, shared state, and support for OpenAI, Anthropic, and Gemini models. The positioning writes itself: the reliability layer for the AI era. Investors, who had watched the company grow from a $3M seed into a platform running over 100 million executions a day, agreed - to the tune of a $21M Series A led by Altimeter, with a16z and Vercel's Guillermo Rauch returning.

What is quietly remarkable about Inngest is how little it wants you to notice it. The best outcome, for its users, is that a whole category of work - queues, retries, recovery - simply stops being a thing they think about. SoundCloud, Tripadvisor, Resend, Contentful, GitBook, and Replit have taken the deal. The product's ambition is measured not in features added but in code deleted.

The Toolkit

What You Can Build With It

One platform, five jobs. Each replaces a pile of infrastructure you would otherwise own, operate, and get paged about.

01 / CORE

Durable Workflows

Break long jobs into steps that retry independently, persist state, and resume after sleeping for days - all in your own codebase.

02 / CONTROL

Flow Control

Concurrency, multi-tenant fairness, rate limiting, throttling, debouncing, and batching, each as a single line of config.

03 / SDKS

TS · Python · Go

Native SDKs with cross-language invocation and live language migration - move a running workflow without downtime.

04 / RECOVER

Replay & Observability

Real-time metrics, tracing, and one-click Replay to re-run failed workflows after you ship the fix.

05 / AGENTS

AgentKit

Build multi-agent networks with deterministic routing, shared state, and MCP tooling across OpenAI, Anthropic & Gemini.

06 / DEPLOY

Run Anywhere

Functions execute over HTTP with no worker fleet - deploy on Vercel, AWS, Cloudflare, Netlify, or your laptop.

The Founders

Two Engineers Who Kept Solving the Same Problem

TH

Tony Holdstock-Brown

Co-Founder & CEO

Former Docker engineer. His handle, tonyhb, is literally his initials - and he is semi-famous in developer circles for barely using LinkedIn. Sets the product direction toward removing infrastructure toil.

DF

Dan Farrelly

Co-Founder & CTO

Former CTO of Buffer. Brings a builder's obsession with reliability and resource management - the parts of a system that only matter when they break, which is exactly when they matter most.

The Track Record

From $3M Seed to $21M Series A

2021

Inngest is founded

Tony Holdstock-Brown and Dan Farrelly start Inngest in San Francisco to build a reliable workflow platform for every developer.

2023

$3M seed led by GGV

Angels include Vercel's Guillermo Rauch and GitHub founder Tom Preston-Werner.

2024

a16z round & multi-language SDKs

Raises $6.1M led by a16z; ships Python and Go SDKs plus Replay recovery tooling.

2025

AgentKit & $21M Series A

Expands into AI agent orchestration and raises a $21M Series A led by Altimeter.

RoundAmountDateLead & Notable Investors
Seed$3MJul 2023GGV Capital · Guillermo Rauch · Tom Preston-Werner · Afore
Seed Ext.$6.1MJan 2024a16z · GGV · Afore Capital
Series A$21MSep 2025Altimeter · a16z · Notable Capital · Afore
On The Record

What People Say

"The durability and reliability, combined with the flow control aspect, allows you to build production applications with better resource management."

- Dan Farrelly, Co-Founder & CTO

"You can do live language migrations without shutting down functions."

- Tony Holdstock-Brown, Co-Founder & CEO

"Developers shouldn't be configuring and managing queues themselves in 2024."

- Matthew Drooker, CTO, SoundCloud

"Inngest enables us to debounce, throttle, and set concurrency on different system parts, reducing unpredictability."

- Erik Munson, Founding Engineer, Day.ai
The Margins

Facts Worth Keeping

  • The CEO's handle tonyhb is his initials - Tony Holdstock-Brown.
  • Both founders ran engineering at known companies: Buffer (CTO) and Docker.
  • The core engine is open source - run the whole stack on your laptop.
  • Inngest runs your code over HTTP with no worker fleet to operate.
  • A workflow can sleep for a week and resume in a single line of code.
The Field

Who Else Is In It

Inngest competes with Temporal (heavyweight, self-managed workers), Trigger.dev (open-source, TypeScript-first), and Hatchet (DAG-style AI pipelines), alongside Defer, Zeplo, Restate, and BullMQ.

Its wedge is the serverless-friendly model: no worker fleet, an open-core engine, and one abstraction that spans plain background jobs and AI agents alike.

Watch

Interviews & Demos

Founder conversations and product walkthroughs, straight from the source.

Questions

The FAQ

What does Inngest do?
Inngest is a durable execution platform that lets developers build background jobs, scheduled tasks, workflows, and AI-agent systems with built-in retries, state persistence, and flow control - without managing queues or worker infrastructure.
Who founded Inngest and when?
Inngest was founded in 2021 by Tony Holdstock-Brown (CEO, ex-Docker) and Dan Farrelly (CTO, ex-Buffer), and is headquartered in San Francisco.
How much funding has Inngest raised?
Roughly $30 million across three rounds: a $3M seed led by GGV (2023), a $6.1M round led by a16z (2024), and a $21M Series A led by Altimeter (2025).
What languages does Inngest support?
SDKs for TypeScript/Node.js, Python, and Go, with cross-language invocation and the ability to migrate running workflows between languages.
How is Inngest different from Temporal?
Inngest runs your functions over HTTP with no worker fleet to operate, and its open-core engine can run locally or on any host, whereas Temporal typically requires self-managed workers and heavier infrastructure.

Share this dossier