Cloudflare

Cloudflare

CDN, cybersecurity, and serverless computing platform

Overview

Company Historically Provides H1B Sponsorship

Preparing a concise company summary based on the provided Cloudflare description.

Funded Recently

About Cloudflare

Simplify's Rating
Why Cloudflare is rated
B
Rated B on Competitive Edge
Rated A on Growth Potential
Rated C on Differentiation

Industries

Data & Analytics

Enterprise Software

Cybersecurity

Company Size

5,001-10,000

Company Stage

IPO

Headquarters

San Francisco, California

Founded

2009

Get referred to Cloudflare

See people who can refer or advise you

Simplify Jobs

Simplify's Take

What believers are saying

  • Q2 2026 revenue reached $696.1 million, up 36%, on August 6.
  • Management raised 2026 revenue guidance to $2.864 billion-$2.870 billion after strong AI demand.
  • Cloudflare's August launches deepen Workers, security, and monetization across one platform.

What critics are saying

  • Cloudflare cut over 1,100 employees in May 2026, disrupting execution and morale.
  • Italy's AGCOM fined Cloudflare over €14 million on January 8, 2026, over piracy blocking.
  • If regulators force payment and content policing, Cloudflare's neutral network posture erodes by 2027.

What makes Cloudflare unique

  • Cloudflare's Workers AI shipped DeepSeek V4 with 1,048,576-token context on August 14.
  • Cloudflare One now detects MCP traffic and enforces Portal-only access on August 14.
  • Cloudflare Wallets and cloudflare.pay tie agent identity to payments across its edge network.

Help us improve and share your feedback! Did you find this helpful?

Funding

Total Funding

$4.8B

Above

Industry Average

Funded Over

12 Rounds

Post IPO Convertible funding comparison data is currently unavailable. We're working to provide this information soon!
Post IPO Convertible Funding Comparison
Coming Soon

Benefits

Competitive salaries

Take-what-you-need paid vacation policy

Comprehensive health plans and benefits

Paid maternity and paternity leave

Commuter and ride share options

Returnships

Stock Price

Growth & Insights and Company News

Headcount

6 month growth

3%

1 year growth

2%

2 year growth

3%
Byteiota
Aug 18th, 2026
DeepSeek V4 on Cloudflare Workers AI: 1M context window is live.

DeepSeek V4 on Cloudflare Workers AI: 1M context window is live. 2 hours ago 0 DeepSeek V4 Flash and Pro arrive on Workers AI with the first 1M-token context window on the platform On August 14, Cloudflare added DeepSeek V4 Pro and DeepSeek V4 Flash to Workers AI - both with a 1,048,576-token context window. That is the first time any model on Workers AI has shipped with a 1 million token context. If you have been routing long-context inference tasks out of your Workers to external APIs because the old ceiling broke your architecture, you no longer need to. What shipped. Two model IDs are live: @cf/deepseek-ai/deepseek-v4-pro-0813 and @cf/deepseek-ai/deepseek-v4-flash-0731. Both run on Cloudflare's managed GPU network and support the same three access paths: the Workers AI binding (env.AI.run, the REST API, and the OpenAI-compatible chat completions endpoint. Both also support thinking mode and function calling. Workers AI's previous context ceiling was 128K tokens on the best available models. V4 Flash and Pro represent an 8x jump minimum - and the official Cloudflare changelog confirms these are the first models on the platform to cross the 1M mark. That is not an incremental upgrade. It changes what you can fit into a single inference call. Flash vs Pro: pick Flash first. The two models are not equals, but the gap is narrower than the naming implies. Flash (284B total parameters, 13B active) outputs at 103.2 tokens per second and scores 47 on the Artificial Analysis Intelligence Index. Pro (1.6T total, 49B active) scores 52 - a 5-point gap. Pro also costs roughly 3.1x more per output token. In most production workloads, that 5-point intelligence difference does not show up. Use Flash as your default. Reserve Pro for workflows with 10+ tool call chains, multi-agent planning where the coordinator needs to track complex state, or explicitly hallucination-sensitive pipelines where the quality gap actually matters. Paying 3x for the Pro label on a straightforward RAG pipeline is a waste. How to wire it up. The Workers binding requires two things: add [ai] binding = "AI" to your wrangler.toml, then call the model in your handler. The Workers Wrangler setup guide covers the full configuration. export default {async fetch(request: Request, env: { AI: Ai}): Promise<Response> {const messages = [ { role: "user", content: "Your prompt here..."}]; const response = await env.AI.run( "@cf/deepseek-ai/deepseek-v4-flash-0731", {messages}); return Response.json(response);}}; For streaming, add stream: true to the options object and pipe the resulting ReadableStream directly to the response. If you are already using the OpenAI SDK elsewhere, you can point its baseURL at Cloudflare's OpenAI-compatible endpoint - no code rewrite required. The 1M token context is for input plus output combined. The maximum generated output is 384,000 tokens, but that output must fit within the same 1M window alongside your prompt. Feed in 800K tokens of context and your maximum output drops to roughly 248K tokens. This is not a surprise gotcha - it is how transformer architectures work - but it is worth planning around before you design a workflow that assumes 384K output tokens regardless of input size. Also worth noting: thinking mode tokens count against your context and your billing even when they are not surfaced to the user. If you enable reasoning mode for a simple classification task, you are burning tokens you did not need to burn. Pricing and access. Both models require either the Workers Paid plan or prepaid AI Gateway credits. The free tier gets nothing here. Standard Workers Paid billing gives you a 20-request-per-minute rate limit. If you route through AI Gateway using Unified Billing - which launched August 7, a week before these models dropped - the rate limit jumps to 50 RPM. Cloudflare passes through inference pricing at cost with no markup. The Unified Billing credits carry a 5% fee on purchase, but the per-token rates are identical to calling DeepSeek directly. The architecture unlock. Before V4, building a long-context agentic workflow on Workers meant one of two things: artificially chunk your context and accept worse results, or break out to an external API and accept egress costs and latency spikes. Neither is a clean solution. With V4, the coordinator-worker pattern becomes practical entirely within Workers AI. A single V4 Pro coordinator holds the full task plan in its 1M context, delegates subtasks to multiple V4 Flash workers for high-speed execution, and reviews combined output - without a single external inference call. The entire loop stays on Cloudflare's network. This is the change that matters. The 1M token number is headline material, but the real value is removing the architectural compromise that forced developers off the platform for long-context workloads. Check the Flash model docs and the Pro model docs for the full parameter reference. Start with Flash, measure whether the Pro intelligence gap matters for your specific pipeline, and keep the inference on the edge where it belongs. I am a playful and cute mascot inspired by computer programming. I have a rectangular body with a smiling face and buttons for eyes. My mission is to cover latest tech news, controversies, and summarizing them into byte-sized and easily digestible information.

ASCII
Aug 17th, 2026
Cloudflare adds MCP traffic detection and Portal controls.

Cloudflare adds MCP traffic detection and Portal controls. 1h ago DevOps Tl;dr. Cloudflare One now detects Model Context Protocol traffic, identifies shadow MCP servers, and enforces approved-path access through new Gateway policies and dashboards. Key points. * MCP-Protocol-Version header detection identifies MCP traffic on TLS-inspected requests without maintaining domain allowlists * New MCP traffic dashboard shows which servers are accessed, which users access them, and whether requests bypass Portals * Gateway Traffic Source selectors distinguish Portal-proxied MCP requests from direct device connections for policy enforcement * Server-side controls (WriteGuard pattern) can block unauthorized tool calls before execution; network layer catches shadow MCP on managed paths Why it matters. AI agents can execute thousands of tool calls at inhuman speed with nondeterministic decisions, creating security risks traditional permission models weren't designed for. These controls let security teams detect unauthorized MCP servers (shadow MCP), prevent Portal bypasses, and block dangerous tool invocations before they execute - critical for organizations deploying Claude, Cursor, and other AI clients with MCP server access.

Yahoo Finance
Aug 17th, 2026
Atlassian and Cloudflare defy SaaSpocalypse fears with strong earnings and $4.8B backlog growth

Atlassian and Cloudflare delivered strong earnings results, pushing back against fears of a "SaaSpocalypse" in enterprise software. Atlassian beat Wall Street forecasts with adjusted earnings per share of $1.87 versus expected $1.50. The company's Remaining Performance Obligations surged 44% year-over-year to $4.8 billion. Atlassian's CEO plans to personally purchase up to $250 million in company stock. Cloudflare reported second-quarter revenue of $696.1 million, up 36% year-over-year, beating expectations of $666 million. Management raised its full-year 2026 revenue guidance to $2.864 billion–$2.870 billion from $2.805 billion–$2.813 billion. The results counter recent disappointing performances from companies like Datadog, Figma, and HubSpot that had sparked concerns about shrinking corporate IT budgets.

SuperDomains.com
Aug 15th, 2026
Emerging edge computing trends in web hosting.

Emerging edge computing trends in web hosting. August 15, 2026 The landscape of web hosting is undergoing a significant transformation due to the rise of edge computing. As more businesses seek to enhance the speed and reliability of their websites, the shift from traditional centralized hosting to decentralized edge computing is becoming increasingly relevant. What is edge computing? Edge computing refers to the practice of processing data closer to its source instead of relying on a centralized data center. This is particularly crucial in today's digital environment, where speed and responsiveness can dictate a business's success. Recent studies reveal that websites utilizing edge computing can achieve load times up to 70% faster compared to traditional hosting solutions. Recent developments. Several key developments illustrate the growing trend of edge computing in web hosting: * Cloudflare's Launch of Edge Services: Cloudflare recently announced new edge services that significantly enhance site performance and security, allowing businesses to deploy applications closer to users. * Amazon Web Services (AWS) Expansion: AWS has been rapidly expanding its edge computing capabilities. With solutions like AWS Wavelength, businesses can build ultra-low latency applications by utilizing edge infrastructure across 5G networks. * Increased Adoption of IoT: As IoT devices proliferate, processing data at the edge helps manage the vast amounts of data generated, reducing bandwidth costs and latency. Why this matters now. As consumer expectations evolve, providing a seamless digital experience is paramount. The acceleration of edge computing in web hosting isn't just a technological upgrade; it's a necessity for staying competitive. With users increasingly demanding instant connectivity and quick-loading sites, businesses without edge capabilities risk lagging behind their counterparts. Actionable steps for businesses. * Evaluate Current Hosting Solutions: Assess your existing hosting provider to determine if they offer edge computing options. Look for providers that feature Content Delivery Networks (CDNs) integrated with edge services. * Consider Edge Solutions: Test solutions that provide edge functionality. This could include using CDNs like Akamai or Amazon CloudFront to cache content closer to users. * Integrate with IoT Technologies: For businesses operating IoT devices, ensure your web hosting provider can offer edge computing capabilities that facilitate real-time data processing. Looking ahead. The trend of edge computing in web hosting is likely to continue to gain momentum, especially as more businesses move towards cloud-native architectures. Companies that adapt to these changes early can position themselves advantageously, reaping the benefits of improved performance and enhanced user experiences.

4sysops
Aug 14th, 2026
Cloudflare makes Workers private by default for vibe-coded apps.

Cloudflare makes Workers private by default for vibe-coded apps. By IT News AI / Fri, Aug 14 2026 / Cloudflare has added Worker-level and account-wide Cloudflare Access policies that put AI-built internal applications behind company authentication before requests reach application code. The change addresses a growing risk of vibe-coded apps being deployed publicly with exposed data, excessive permissions, or unsafe cloud configuration. Authentication now follows the Worker. Previously, administrators had to protect each hostname used by a Worker. A newly added domain, route, workers.dev address, or preview URL could therefore become reachable before its Access policy was updated. Access can now attach directly to a Worker. Policies can cover only preview deployments or every hostname, including production domains, routes, custom domains, and preview URLs. An account-level policy can also protect existing and future Workers automatically, while individual public Workers can be exempted when needed. Identity is available inside the application. Authenticated user details are exposed through the Worker context with ctx.access.getIdentity. Applications can read the user's email, name, and groups without manually parsing and validating an Access JSON Web Token, making it easier to implement per-user permissions and activity logging. Cloudflare also added local testing support through wrangler dev, where developers can define a test identity in wrangler.jsonc. For internal deployment platforms built with Workers for Platforms, protecting the dispatcher Worker can place every application in its namespace behind the same authentication boundary. Private deployment is only the first control. Access prevents unauthenticated requests from reaching the Worker, but it does not replace application security review. AI-generated infrastructure can still create excessive privileges, exposed storage, or unsafe networking, so administrators should pair the new default with infrastructure-as-code checks, secret scanning, vulnerability gates, and human review of authentication and database logic. Cloudflare says the capability is available to everyone through the dashboard and Access for Workers documentation. The feature relies on the company's FL2 proxy architecture, which separates Worker routing from execution so Access can identify the destination Worker before authentication is evaluated.

Recently Posted Jobs

Sign up to get curated job recommendations

Cloudflare is Hiring for 233 Jobs on Simplify!

Find jobs on Simplify and start your career today

Don't see your dream role? Check out thousands of other roles on Simplify. Browse all jobs →