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

# Get Routes



## OpenAPI

````yaml GET /payments/{id}/cross-chain/routes
openapi: 3.0.0
info:
  title: Ebioro Merchant API
  description: >-
    API for merchant payment processing on Stellar. Supports direct USDC
    payments and cross-chain deposits from multiple blockchains.
  version: '1.0'
  contact: {}
servers: []
security: []
tags: []
paths:
  /payments/{id}/cross-chain/routes:
    get:
      tags:
        - Cross-Chain Payments
      summary: List available cross-chain payment networks
      operationId: CrossChainController_getRoutes
      parameters:
        - name: id
          required: true
          in: path
          description: The payment checkout ID
          schema:
            type: string
      responses:
        '200':
          description: ''

````