> ## 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 Quote



## OpenAPI

````yaml POST /payments/{id}/cross-chain/quote
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/quote:
    post:
      tags:
        - Cross-Chain Payments
      summary: Get cross-chain payment quote with deposit address
      operationId: CrossChainController_getQuote
      parameters:
        - name: id
          required: true
          in: path
          description: The payment checkout ID
          schema:
            type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CrossChainQuoteDto'
      responses:
        '200':
          description: ''
components:
  schemas:
    CrossChainQuoteDto:
      type: object
      properties:
        originChain:
          type: string
          description: Origin chain slug (e.g. sol, base, arb, near, tron, btc)
        originToken:
          type: string
          description: Origin token symbol (e.g. USDC, ETH, SOL)
        refundAddress:
          type: string
          description: >-
            Refund address on the origin chain. If omitted, defaults to ebioro
            collection address.
      required:
        - originChain
        - originToken

````