---
title: Workers are no longer limited to 1000 subrequests
description: Workers no longer have an explicit limit on subrequests per invocation, allowing for more fetch and service calls.
image: https://developers.cloudflare.com/changelog-preview.png
---

[Skip to content](#%5Ftop) 

# Changelog

New updates and improvements at Cloudflare.

[ Subscribe to RSS ](https://developers.cloudflare.com/changelog/rss/index.xml) [ View RSS feeds ](https://developers.cloudflare.com/fundamentals/new-features/available-rss-feeds/) 

![hero image](https://developers.cloudflare.com/_astro/hero.CVYJHPAd_26AMqX.svg) 

[ ← Back to all posts ](https://developers.cloudflare.com/changelog/) 

## Workers are no longer limited to 1000 subrequests

Feb 11, 2026 

[ Workers ](https://developers.cloudflare.com/workers/) 

Workers no longer have a limit of 1000 subrequests per invocation, allowing you to make more `fetch()` calls or requests to Cloudflare services on every incoming request. This is especially important for long-running Workers requests, such as open websockets on [Durable Objects](https://developers.cloudflare.com/durable-objects) or long-running [Workflows](https://developers.cloudflare.com/workflows), as these could often exceed this limit and error.

By default, Workers on paid plans are now limited to 10,000 subrequests per invocation, but this limit can be increased up to 10 million by setting the new `subrequests` limit in your Wrangler configuration file.

* [  wrangler.jsonc ](#tab-panel-1308)
* [  wrangler.toml ](#tab-panel-1309)

JSONC

```

{

  "limits": {

    "subrequests": 50000,

  },

}


```

TOML

```

[limits]

subrequests = 50_000


```

Workers on the free plan remain limited to 50 external subrequests and 1000 subrequests to Cloudflare services per invocation.

To protect against runaway code or unexpected costs, you can also set a lower limit for both subrequests and CPU usage.

* [  wrangler.jsonc ](#tab-panel-1310)
* [  wrangler.toml ](#tab-panel-1311)

JSONC

```

{

  "limits": {

    "subrequests": 10,

    "cpu_ms": 1000,

  },

}


```

TOML

```

[limits]

subrequests = 10

cpu_ms = 1_000


```

For more information, refer to the [Wrangler configuration documentation for limits](https://developers.cloudflare.com/workers/wrangler/configuration/#limits) and [subrequest limits](https://developers.cloudflare.com/workers/platform/limits/#subrequests).