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

# List Crosschain Delta bridge protocols

> Active bridge protocols (slug, display name, icon) for rendering a bridge picker.



## OpenAPI

````yaml api-reference/specs/delta-v2.json GET /v2/delta/prices/bridge-protocols
openapi: 3.0.3
info:
  title: Velora Delta API V2
  version: 2.0.0
  description: >-
    Velora Delta API V2 — server-built EIP-712 orders, route-based pricing with
    alternatives, paginated order history, and a unified status model. Ships
    alongside Delta V1; both protocols share the same on-chain contracts.
servers:
  - url: https://api.velora.xyz
    description: Production
security: []
paths:
  /v2/delta/prices/bridge-protocols:
    get:
      summary: List active bridge protocols
      description: >-
        Display catalogue of every bridge protocol currently active in the
        relayer's `BridgeApi`. Useful for rendering a bridge picker.
      operationId: deltaV2BridgeProtocols
      responses:
        '200':
          description: Active bridge protocols.
          content:
            application/json:
              schema:
                type: object
                properties:
                  bridgeProtocols:
                    type: array
                    items:
                      type: object
                      properties:
                        protocol:
                          type: string
                          description: >-
                            Stable protocol slug. Use this for `includeBridges`
                            / `excludeBridges` filters on `GET
                            /v2/delta/prices`.
                        displayName:
                          type: string
                        icon:
                          type: string
                          description: >-
                            Absolute URL to a 1:1 SVG icon hosted on
                            cdn.velora.xyz.

````