Fundraising Fox

Prefect

Washington, US · Founded 2018 · Delaware corporation · 152 employees on LinkedIn · 6 known investors

Prefect builds intelligent workflow orchestration infrastructure that manages mission-critical automated workflows for teams balancing flexibility with reliability. The platform delivers context-aware automation for enterprises and startups running production environments.

Also known as Prefect Technologies · Prefect Technologies Inc.

Founders & leadership

Prefect was founded in 2018 by Jeremiah Lowin.

JLJeremiah Lowin
Jeremiah LowininFounder & CEO

Board

PW
Patrick W. OShaughnessyBoard director

Investors · 6

Also in the syndicate · 1

Positive Sum

Reported raises · per SEC filings

Form D private placements

$79.4M disclosed across 3 of 5 rounds · 2019–2026

$65.3MraisedAug 2026 · 113 investors · Other Technology
Rule 506(b)
Officers, directors & promoters on the filing
  • Jeremiah LowinExecutive Officer, Director
  • Patrick W. OShaughnessyDirector
Offering amount
$65.3M
Amount sold
$65.3M
First sale
Aug 2026
Incorporated
Corporation, Delaware
Federal exemptions
06b
Full filing on SEC EDGAR ↗
$11.6MraisedDec 2020 · 26 investors · Other Technology
Rule 506(b)
Officers, directors & promoters on the filing
  • Jeremiah LowinExecutive Officer, Director
  • Patrick W. OShaughnessyDirector
Offering amount
$11.6M
Amount sold
$11.6M
First sale
Nov 2020
Incorporated
Corporation, Delaware, 2018
Federal exemptions
06b
Full filing on SEC EDGAR ↗
$2.5MraisedDec 2019 · 16 investors · Other Technology
Rule 506(b)
Officers, directors & promoters on the filing
  • Jeremiah LowinExecutive Officer, Director
Offering amount
$2.5M
Amount sold
$2.5M
First sale
Dec 2019
Incorporated
Corporation, Delaware, 2018
Federal exemptions
06b
Full filing on SEC EDGAR ↗

Source: SEC EDGAR Form D. Amounts as filed; amended filings shown once at their latest values.

Company profile

researched Aug 2026

Prefect develops a workflow orchestration platform that turns ordinary Python functions into production workflows using two decorators, @flow and @task. The system provides state tracking, automatic retries, caching, crash recovery, scheduling (cron, event-driven, and backfills), logging, and dependency/DAG visualization without requiring a domain-specific language, YAML, or pre-declared DAG structures. Because workflows are plain Python, they can branch, loop, and create tasks dynamically at runtime. The product is positioned for data pipelines, machine learning training and experimentation, durable background tasks, platform engineering across microservices, and orchestration of LLM/agent workloads with human-in-the-loop control.

The offering has two main forms: the open-source Prefect framework, licensed under Apache 2.0, which can be self-hosted with full VPC control; and Prefect Cloud, a managed, high-availability deployment running the same core engine and adding a managed control plane, enterprise authentication, SSO, autoscaling, and enterprise features. Prefect Serverless runs flows on managed compute, while a hybrid model places lightweight workers inside the customer environment so code and data remain in place while the control plane handles scheduling and visibility. Work pools decouple workflow code from execution infrastructure, supporting Docker, Kubernetes, ECS, Google Cloud Run, Azure ACI, Modal, and serverless targets. Enterprise attributes advertised include SOC 2 Type II, HIPAA and GDPR alignment, 99.99% uptime, and a 30-minute support response SLA.

Prefect also maintains FastMCP, an open-source framework for building Model Context Protocol servers that connect AI agents to tools and data, and Prefect Horizon, an MCP gateway providing a single entrypoint for MCP servers with authentication, authorization, and per-tool governance. A Prefect MCP server allows AI assistants such as Claude Code, Cursor, Codex CLI, and Gemini CLI read-only access to deployments, flow runs, task runs, and logs.

Founding story

Founded in 2018 by Jeremiah Lowin, whose experience as a PMC member of Apache Airflow and exposure to distributed tools such as Dask informed the idea that orchestration should be expressed in native Python decorators rather than rigid DAG definitions. Third-party coverage frames the founding insight as an unmet need for more robust, flexible orchestration able to handle the growing complexity and scale of modern data operations, and as a reaction to the operational overhead imposed by existing tools such as Apache Airflow.

Business model

Open-core: the Prefect orchestration engine is released as open source under Apache 2.0 and can be self-hosted, while Prefect Cloud is a commercial managed deployment of the same engine that adds a hosted control plane, enterprise authentication, autoscaling, and support. Tiered plans include a free entry point and enterprise plans with a 30-minute support response SLA.

Commercial revenue comes from Prefect Cloud subscriptions (managed orchestration with enterprise features such as SSO, autoscale, priority support), layered on a free open-source framework; the 2021 funding announcement described a product-led growth strategy converting open-source community usage into commercial adoption.

Traction

The open-source framework reports 14.3M+ downloads per month, 23.6k+ GitHub stars, and 425+ contributors, with a community described as nearly 30,000 engineers (the company site cites 25,000+). The company states over 100,000 mission-critical workflows are orchestrated every minute. The Prefect package is cited at 6M+ monthly and FastMCP at 103M+ monthly on the homepage. At the time of the 2021 Series B, Prefect Cloud usage was growing 130% per quarter since its February 2020 public launch and had surpassed 200 million tasks processed. Customer-reported outcomes include Snorkel AI running 1,000+ flows per hour with a 20x throughput improvement, WHOOP cutting production incidents by 75%, and reported cost reductions of 70% (Cash App) and 73% infrastructure savings cited in third-party coverage.

Latest developments

Prefect acquired Dagster Labs in July 2026, with the company stating that nothing changes for users of either product. Current product positioning extends orchestration beyond data and ML to AI agents, including Prefect Horizon (a secure MCP gateway with authentication, authorization, and per-tool governance), the FastMCP open-source MCP server framework, a read-only Prefect MCP server for AI coding assistants, and Prefect Serverless managed compute.

Full profile — market position, technology, go-to-market, geography, history, risks & controversies

Market position

Positioned as a modern, Python-native alternative to legacy DAG-based orchestrators, most directly Apache Airflow, differentiating on dynamic runtime workflows, built-in durable execution, and a managed control plane. Third-party coverage describes it as a leading workflow orchestration platform with strong open-source adoption, and the company states its software orchestrates more than 100,000 mission-critical workflows per minute. In July 2026 Prefect acquired Dagster Labs, combining two orchestration products.

Workflows are written as plain Python functions rather than declared DAGs, allowing branching, loops, and runtime task creation; durable execution, retries, state and crash recovery are handled by the engine rather than user code; Prefect Cloud removes the need to host or upgrade a scheduler; the hybrid model keeps customer code and data inside their own environment (the vendor states it never receives customer data); and the commercial cloud runs the same Apache 2.0 engine rather than a fork.

Technology

Python-native orchestration engine built around flow and task decorators, with persisted results for durable execution and exactly-once semantics, resumable runs from the last successful step, caching of expensive computations, task mapping for dynamic parallelism, async/await and type-hint support, and an open-sourced events and automations backend for event-driven triggers and webhooks. Prefect 3.0 (2024) reduced runtime overhead by up to 90%. Execution is portable through work pools targeting Docker, Kubernetes, ECS, Google Cloud Run, Azure ACI, Modal, and serverless compute, with a hybrid control-plane/worker split. Adjacent open-source work includes FastMCP for building MCP servers and the Horizon MCP gateway.

Go-to-market

Product-led growth anchored on the open-source framework and a free Prefect Cloud tier, supported by documentation, hands-on courses, video tutorials and architecture guides, published customer case studies, a large engineer community, and a direct enterprise sales motion ("book a demo", enterprise plans). Partnerships with data infrastructure vendors and a collaboration with Microsoft for Startups have also been used as channels.

Data engineers, data scientists, machine learning teams, and platform engineers at organizations from startups to large enterprises running mission-critical production workflows; named users include Ramp, WHOOP, Cash App, Barstool Sports, Seven.One Entertainment, Snorkel AI, Flatiron Health, and Clearcover, spanning financial services, healthcare, technology, insurance, media, and higher education.

Geography

Headquartered in Washington, D.C., United States, operating as a remote-first, distributed team spanning multiple time zones; customers and open-source community members are described as global.

History

Prefect was founded in 2018 by Jeremiah Lowin, a PMC member of Apache Airflow, around the premise that workflow orchestration should be Pythonic; early versions used simple decorators for tasks and flows and introduced task mapping. Prefect Cloud launched publicly in February 2020. Prefect 2.0, released in 2022, removed the requirement that workflows be expressed as explicit DAGs and embraced native Python control flow. Prefect 3.0, released in 2024, open-sourced the events and automations backend and cut runtime overhead by up to 90%. The company announced an $11.5M Series A in February 2021 and a $32M Series B led by Tiger Global in June 2021, and in July 2026 it acquired Dagster Labs.

Risks & controversies

Sources are inconsistent on total capital raised: the June 2021 press release states $46.7M raised in total (a $32M Series B plus an $11.5M Series A), while a third-party profile reports $44.0M across two rounds and separately cites $43.5M. The same third-party profile lists an employee band of 1,001-5,000, which is not corroborated elsewhere and sits oddly against the company's remote-team description. Integration of the acquired Dagster Labs orchestration product is a pending execution question. No other controversies are described in the available sources.

Compiled by commissioned research from 8 cited public sources — announcements, filings, and press listed under research sources below.

Key figures

latest reported
Advertised uptimeJan 202699.99%
Cash App cost reduction (third-party report)Jan 202670%
Cumulative tasks processedJun 2021200,000,000 tasks
Employee range (third-party listing)Jan 20261001-5000
FastMCP monthly volumeJan 2026103,000,000 per month
GitHub starsJan 202623,600 stars
Mission-critical workflows orchestrated per minuteJan 2026100,000 workflows/minute
Number of funding rounds (third-party estimate)Jan 2026$2
Open-source contributorsJan 2026425 contributors
Open-source downloads per monthJan 202614,300,000 downloads/month
Prefect Cloud usage growthJun 2021130% per quarter since February 2020 public launch
Prefect package monthly volumeJan 20266,000,000 per month
Snorkel AI flows per hour on Prefect OSSJan 20261,000 flows/hour
Snorkel AI throughput improvementJan 202620x
Total funding raisedJun 2021$46.7M

Company-reported or press-reported figures, each dated to when it was claimed — not independently audited.

Competitors · 6

by search overlap
DataCamp189 shared keywordsDataCamp is a learning platform for teams that teaches data and AI skills through hands-on coursework accessible via web browser and mobile app. It serves enterprise customers and development teams seeking to build technical capabilities.
Netezza142 shared keywordsIBM is a global technology company whose business spans enterprise software (including Red Hat, HashiCorp, and Confluent), IT infrastructure such as mainframes, servers, and storage, and IT consulting services. The company is also investing heavily in quantum computing and AI-based enterprise offerings, including its Lightwell open-source software security clearinghouse and the Anderon quantum wafer foundry.
Orchestra120 shared keywordsOrchestra provides a platform for building, running, and monitoring AI agents and data pipelines on cloud data warehouses including Snowflake, Databricks, BigQuery, and Azure, serving data teams.
Databricks94 shared keywordsDatabricks provides a unified platform for data engineering, analytics, and artificial intelligence, enabling organizations to build and deploy data and AI applications on cloud infrastructure.
Pydantic87 shared keywordsPydantic offers an end-to-end AI engineering stack built around its open-source Python library, including Pydantic Validation, Pydantic AI (an agent framework), Pydantic Logfire (AI observability), and Pydantic Evals for testing LLM behavior. It targets software developers building type-safe AI applications across Python, TypeScript, Rust, and Go, with cloud or self-hosted deployment options.
Docker71 shared keywordsDocker provides containerization and application development platform tools including sandboxes, governance, and security solutions for developers.

Companies competing with Prefect for the same Google search keywords, organic and paid, via search-intersection analysis.

Timeline · 7

launches, deals, and filings
Jul 2026
Prefect acquires Dagster Labs

Prefect states it acquired Dagster Labs in July 2026, combining two orchestration products; the company says nothing changes for users of either product.

source ↗

Jan 2024
Prefect 3.0 release

Prefect 3.0 open-sourced the events and automations backend for event-driven workflows and reduced Prefect runtime overhead by up to 90%.

source ↗

Jan 2022
Prefect 2.0 release

Prefect 2.0 removed the constraint that workflows be written explicitly as DAGs, embracing native Python control flow such as conditionals and loops.

source ↗

Jun 2021
$32M Series B led by Tiger Global

Prefect Technologies Inc. announced $32M in Series B funding led by Tiger Global, with participation from new investor Bessemer Venture Partners, existing investor Positive Sum and others, bringing total capital raised to $46.7M.

$32M source ↗

Jun 2021
Collaboration with Microsoft for Startups

The Series B announcement referenced a new collaboration between Prefect and Microsoft for Startups.

source ↗

Feb 2021
$11.5M Series A

Prefect's Series A round totaled $11.5M, announced in February 2021.

$11.5M source ↗

Feb 2020
Prefect Cloud public launch

Prefect Cloud became publicly available in February 2020; usage subsequently grew 130% per quarter through mid-2021.

source ↗

Dated company events from announcements, filings, and press; legal rows summarize public dockets and regulator releases.

Legal entities · 1

corporate structure
PrefectDelaware

In the news

Research sources · 8

primary sources listed

8 public sources were cited for this profile; the first-party ones are listed here.

Frequently asked questions

What does Prefect do?
Prefect is a Python-native workflow orchestration platform for data, ML, and AI agent pipelines, offered as open source and cloud.
Who founded Prefect?
Prefect was founded by Jeremiah Lowin in 2018.
Who are Prefect's investors?
Prefect's investors include Bessemer Venture Partners, Green Meadow Ventures, Positive Sum Capital, Rachel Zoe Ventures, Tiger Global Management.
How much funding has Prefect raised?
Prefect has disclosed $79.4M raised across 3 of its 5 known rounds.
Where is Prefect headquartered?
Prefect is headquartered in Washington, US.