# dynamic

> For the complete documentation index, see [llms.txt](https://docs.redpanda.com/llms.txt). Component-specific: [connect-full.txt](https://docs.redpanda.com/connect-full.txt)

---
title: dynamic
latest-connect-version: 4.93.0
latest-operator-version: v26.1.4
latest-console-tag: v3.7.3
latest-redpanda-tag: v26.1.9
docname: outputs/dynamic
page-component-name: connect
page-version: master
page-component-version: master
page-component-title: Connect
page-relative-src-path: outputs/dynamic.adoc
page-edit-url: https://github.com/redpanda-data/rp-connect-docs/edit/main/modules/components/pages/outputs/dynamic.adoc
page-git-created-date: "2024-05-24"
page-git-modified-date: "2026-05-26"
---

<!-- Source: https://docs.redpanda.com/connect/components/outputs/dynamic.md -->

**Type:** Output ▼

[Output](https://docs.redpanda.com/connect/components/outputs/dynamic/)[Input](https://docs.redpanda.com/connect/components/inputs/dynamic/)

**Available in:** Self-Managed

A special broker type where the outputs are identified by unique labels and can be created, changed and removed during runtime via a REST API.

```yml
outputs:
  label: ""
  dynamic:
    outputs: {}
    prefix: ""
```

The broker pattern used is always `fan_out`, meaning each message will be delivered to each dynamic output.

## [](#fields)Fields

### [](#outputs)`outputs`

A map of outputs to statically create.

**Type**: `output`

**Default**: `{}`

### [](#prefix)`prefix`

A path prefix for HTTP endpoints that are registered.

**Type**: `string`

**Default**: `""`

## [](#endpoints)Endpoints

### [](#get-outputs)GET `/outputs`

Returns a JSON object detailing all dynamic outputs, providing information such as their current uptime and configuration.

### [](#get-outputsid)GET `/outputs/{id}`

Returns the configuration of an output.

### [](#post-outputsid)POST `/outputs/{id}`

Creates or updates an output with a configuration provided in the request body (in YAML or JSON format).

### [](#delete-outputsid)DELETE `/outputs/{id}`

Stops and removes an output.

### [](#get-outputsiduptime)GET `/outputs/{id}/uptime`

Returns the uptime of an output as a duration string (of the form "72h3m0.5s").