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

# OpenBridge

> Open a cross-network bridge session

The `DAppBridgeService` exposes a single RPC used to open bridge sessions between networks.

## Service

```proto theme={null}
service DAppBridgeService {
  rpc OpenBridge (OpenBridgeRequest) returns (OpenBridgeResponse);
}
```

## Example

```bash theme={null}
grpcurl rpc-devnet.modo-api.app:443 \
  list silvana.ledger.v1.DAppBridgeService

grpcurl rpc-devnet.modo-api.app:443 \
  describe silvana.ledger.v1.DAppBridgeService.OpenBridge
```

<Note>
  Use reflection to discover the full request/response schema of `OpenBridge` against the specific environment you are targeting — the exact fields may evolve independently of `DAppProviderService`.
</Note>

## See also

* [Overview](/agentic-api/overview) — `DAppBridgeService` sits alongside `DAppProviderService` in the same `silvana.ledger.v1` package.
* [`GetServiceInfo`](/agentic-api/core/get-service-info) — for non-bridge operations on the provider service.
