GET
/
v1
/
service
/
transfer
/
quote
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>"
  }
]

Query Parameters

request
object
required

The criteria for filtering 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.

Represents a target for the transfer, such as a bank or cash location.

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.