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

# List Crosschain Delta bridge routes

> Crosschain bridge-route catalogue: every supported (srcChainId, destChainId, tokens) triple.



## OpenAPI

````yaml api-reference/specs/delta-v2.json GET /v2/delta/prices/bridge-routes
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-routes:
    get:
      summary: List supported crosschain bridge routes
      description: >-
        Returns the set of `(srcChainId, destChainId, tokens)` triples that the
        relayer can quote.
      operationId: deltaV2BridgeRoutes
      parameters:
        - name: bridges
          in: query
          required: false
          schema:
            type: string
          description: >-
            Comma-separated bridge protocol names (e.g., `acrossv3,stargatev2`).
            Omit to list every active bridge.
        - name: allowBridgeAndSwap
          in: query
          required: false
          schema:
            type: boolean
            default: true
      responses:
        '200':
          description: Flat list of supported routes.
          content:
            application/json:
              schema:
                type: object
                properties:
                  routes:
                    type: array
                    items:
                      type: object
                      properties:
                        srcChainId:
                          type: integer
                        destChainId:
                          type: integer
                        tokens:
                          type: array
                          items:
                            type: string
                          description: Token addresses bridgeable on this lane.

````