---
title: Outbound Workers
description: Intercept and control outgoing fetch requests from user Workers using Outbound Workers in Workers for Platforms.
image: https://developers.cloudflare.com/dev-products-preview.png
---

> Documentation Index  
> Fetch the complete documentation index at: https://developers.cloudflare.com/cloudflare-for-platforms/llms.txt  
> Use this file to discover all available pages before exploring further.

[Skip to content](#%5Ftop) 

# Outbound Workers

Outbound Workers sit between your customer's Workers and the public Internet. They give you visibility into all outgoing `fetch()` requests from user Workers.

![Outbound Workers diagram information](https://developers.cloudflare.com/_astro/outbound-worker-diagram.BSvN4KG0_YJsgi.webp) 

## General Use Cases

Outbound Workers can be used to:

* Log all subrequests to identify malicious domains or usage patterns.
* Create, allow, or block lists for hostnames requested by user Workers.
* Configure authentication to your APIs behind the scenes (without end developers needing to set credentials).

Note

When an Outbound Worker is enabled, your customer's Worker will no longer be able to use the [connect() API](https://developers.cloudflare.com/workers/runtime-apis/tcp-sockets/#connect)to create outbound TCP Sockets. This is to ensure all outbound communication goes through the Outbound Worker's `fetch` method.

## Use Outbound Workers

To use Outbound Workers:

1. Create a Worker intended to serve as your Outbound Worker.
2. Outbound Worker can be specified as an optional parameter in the [dispatch namespaces](https://developers.cloudflare.com/cloudflare-for-platforms/workers-for-platforms/configuration/dynamic-dispatch/) binding in a project's [Wrangler configuration file](https://developers.cloudflare.com/workers/wrangler/configuration/). Optionally, to pass data from your dynamic dispatch Worker to the Outbound Worker, the variable names can be specified under **parameters**.

Make sure that you have `wrangler@3.3.0` or later [installed](https://developers.cloudflare.com/workers/wrangler/install-and-update/).

* [  wrangler.jsonc ](#tab-panel-4802)
* [  wrangler.toml ](#tab-panel-4803)

JSONC

```

{

  "dispatch_namespaces": [

    {

      "binding": "dispatcher",

      "namespace": "<NAMESPACE_NAME>",

      "outbound": {

        "service": "<SERVICE_NAME>",

        "parameters": [

          "params_object"

        ]

      }

    }

  ]

}


```

TOML

```

[[dispatch_namespaces]]

binding = "dispatcher"

namespace = "<NAMESPACE_NAME>"


  [dispatch_namespaces.outbound]

  service = "<SERVICE_NAME>"

  parameters = [ "params_object" ]


```

1. Edit your dynamic dispatch Worker to call the Outbound Worker and declare variables to pass on `dispatcher.get()`.

JavaScript

```

export default {

  async fetch(request, env) {

    try {

      // parse the URL, read the subdomain

      let workerName = new URL(request.url).host.split(".")[0];


      let context_from_dispatcher = {

        customer_name: workerName,

        url: request.url,

      };


      let userWorker = env.dispatcher.get(

        workerName,

        {},

        {

          // outbound arguments. object name must match parameters in the binding

          outbound: {

            params_object: context_from_dispatcher,

          },

        },

      );

      return await userWorker.fetch(request);

    } catch (e) {

      if (e.message.startsWith("Worker not found")) {

        // we tried to get a worker that doesn't exist in our dispatch namespace

        return new Response("", { status: 404 });

      }

      return new Response(e.message, { status: 500 });

    }

  },

};


```

1. The Outbound Worker will now be invoked on any `fetch()` requests from a user Worker. The user Worker will trigger a [FetchEvent](https://developers.cloudflare.com/workers/runtime-apis/handlers/fetch/) on the Outbound Worker. The variables declared in the binding can be accessed in the Outbound Worker through `env.<VAR_NAME>`.

The following is an example of an Outbound Worker that logs the fetch request from user Worker and creates a JWT if the fetch request matches `api.example.com`.

JavaScript

```

export default {

  // this event is fired when the dispatched Workers make a subrequest

  async fetch(request, env, ctx) {

    // env contains the values we set in `dispatcher.get()`

    const customer_name = env.customer_name;

    const original_url = env.url;


    // log the request

    ctx.waitUntil(

      fetch("https://logs.example.com", {

        method: "POST",

        body: JSON.stringify({

          customer_name,

          original_url,

        }),

      }),

    );


    const url = new URL(original_url);

    if (url.host === "api.example.com") {

      // pre-auth requests to our API

      const jwt = make_jwt_for_customer(customer_name);


      let headers = new Headers(request.headers);

      headers.set("Authorization", `Bearer ${jwt}`);


      // clone the request to set new headers using existing body

      let new_request = new Request(request, { headers });


      return fetch(new_request);

    }


    return fetch(request);

  },

};


```

Note

Outbound Workers do not intercept fetch requests made from [Durable Objects](https://developers.cloudflare.com/durable-objects/) or [mTLS certificate bindings](https://developers.cloudflare.com/workers/runtime-apis/bindings/mtls/).

```json
{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"item":{"@id":"/directory/","name":"Directory"}},{"@type":"ListItem","position":2,"item":{"@id":"/cloudflare-for-platforms/","name":"Cloudflare for Platforms"}},{"@type":"ListItem","position":3,"item":{"@id":"/cloudflare-for-platforms/workers-for-platforms/","name":"Workers for Platforms"}},{"@type":"ListItem","position":4,"item":{"@id":"/cloudflare-for-platforms/workers-for-platforms/configuration/","name":"Configuration"}},{"@type":"ListItem","position":5,"item":{"@id":"/cloudflare-for-platforms/workers-for-platforms/configuration/outbound-workers/","name":"Outbound Workers"}}]}
```
