Skip to main content
GET
/
v1
/
service
/
transfer
/
quote
List quotes
curl --request GET \
  --url https://api.nxos.io/v1/service/transfer/quote
[
  {
    "quote_id": "<string>",
    "base_asset": "<string>",
    "counter_asset": "<string>",
    "base_asset_tier": {
      "min_amount": "<string>",
      "max_amount": "<string>"
    },
    "exchange_rate": "<string>",
    "fee": {
      "basis_points": "<string>",
      "fixed": "<string>"
    },
    "targets": [
      {
        "target_code": "<string>",
        "name": "<string>",
        "type": "<string>",
        "metadata": {}
      }
    ],
    "expires_at": "<string>",
    "created_at": "<string>"
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.ledger.nxos.io/llms.txt

Use this file to discover all available pages before exploring further.

Query Parameters

request
object
required

The criteria for filtering quotes. Represents the request parameters for listing quotes.

Response

200 - application/json

An array of Quote objects matching the specified criteria.

quote_id
string
required

Unique identifier for the quote.

base_asset
string
required

The base asset code for the quote.

counter_asset
string
required

The counter asset code for the quote.

base_asset_tier
object
required

The tier information for the base asset, including min and max amounts.

exchange_rate
string
required

The exchange rate for the quote.

fee
object
required

The fee information for the quote.

targets
object[]
required

An array of potential targets for the transfer.

expires_at
string
required

The expiration time of the quote in ISO 8601 format.

created_at
string
required

The creation time of the quote in ISO 8601 format.