> ## Documentation Index
> Fetch the complete documentation index at: https://docs.ditto.live/llms.txt
> Use this file to discover all available pages before exploring further.

# List Data Bridges

> Lists all data bridges (CDC or MongoDB Connector) associated with a Big Peer app.



## OpenAPI

````yaml /ditto-server/operator/operator-api-spec.json get /namespace/{namespace}/bigPeer/{big_peer_name}/app/{app_name}/dataBridge
openapi: 3.1.0
info:
  title: Operator Management API
  description: A RESTful API that allows users to manage Big Peer apps and API keys.
  license:
    name: Ditto Binary License
    identifier: Ditto Binary License
  version: 1.0.0
servers:
  - url: http://localhost:{port}
    description: Local server
    variables:
      port:
        default: '8080'
security: []
tags:
  - name: App
    description: Big Peer apps API endpoints
  - name: API Keys
    description: Big Peer HTTP API keys
  - name: Data Bridge
    description: Apps' data bridges (CDC)
paths:
  /namespace/{namespace}/bigPeer/{big_peer_name}/app/{app_name}/dataBridge:
    get:
      tags:
        - Data Bridge
      summary: List Data Bridges
      description: >-
        Lists all data bridges (CDC or MongoDB Connector) associated with a Big
        Peer app.
      operationId: listDataBridges
      responses:
        '200':
          description: List of data bridges for the app
          content:
            application/json:
              schema:
                $ref: 33cb3dae-aa6d-46e7-969d-b0a7ad431cd1
        '404':
          description: App not found
          content:
            application/json:
              examples:
                AppNotFound:
                  summary: app not found

````