Skip to main content

Get RFQ markets

GET 

/config/markets

Returns the configured RFQ markets, one entry per market with its full quote structure.

PRICE_GUARANTEE_CONVERT entries are overrides per pair: enabled: false disables that convert pair; enabled: true overrides the quote structure for that pair.

info

This is a private endpoint. To send requests, you need to authenticate. Your API key must have the View access permission.

Rate limit weight points: 1

Request

Query Parameters

    rfqType string

    Returns markets for the specified type of RFQ. If not specified, returns markets for all types.

    Possible values:

    • STABLECOIN_PARITY — EUR/EURC conversion at a 1:1 rate.
    • PRICE_GUARANTEE — the standard Price Guarantee RFQ for spot markets.
    • PRICE_GUARANTEE_UK — the Price Guarantee RFQ variant for United Kingdom customers. Markets are quoted in GBP.
    • PRICE_GUARANTEE_CONVERT — the Price Guarantee RFQ variant used for asset-to-asset conversions (the Convert product).
    Example: PRICE_GUARANTEE
    enabled boolean

    If true, returns only tradeable markets. If false, returns only non-tradeable markets. If not specified, returns all markets.

    market string

    Returns the specified market.

    Example: BTC-EUR

Responses

The request was successful.

Schema
  • Array [
  • marketstringrequired

    The market in BASE-QUOTE format.

    Example: BTC-EUR
    basestringrequired

    The base asset of the market.

    Example: BTC
    quotestringrequired

    The quote asset of the market.

    Example: EUR
    rfqTypeRfqType (string)required

    The type of the RFQ. Possible values:

    • STABLECOIN_PARITY — EUR/EURC conversion at a 1:1 rate.
    • PRICE_GUARANTEE — the standard Price Guarantee RFQ for spot markets.
    • PRICE_GUARANTEE_UK — the Price Guarantee RFQ variant for United Kingdom customers. Markets are quoted in GBP.
    • PRICE_GUARANTEE_CONVERT — the Price Guarantee RFQ variant used for asset-to-asset conversions (the Convert product).

    Possible values: [STABLECOIN_PARITY, PRICE_GUARANTEE, PRICE_GUARANTEE_UK, PRICE_GUARANTEE_CONVERT]

    enabledbooleanrequired

    Indicates whether the market is tradeable.

    Example: true
    tickSizestringrequired

    The minimum price increment of the market. A quoted price must be a multiple of this value.

    Matches the tickSize value returned by Get markets.

    Example: 0.01
    quantityDecimalsinteger<int32>required

    The maximum number of decimal places for the base-asset amount.

    Example: 8
    notionalDecimalsinteger<int32>required

    The maximum number of decimal places for the notional amount. If required, the notional is rounded to this many decimal places. Used to validate the quantity if it is requested in quote-asset terms.

    Example: 2
    minOrderInBaseAssetstring

    The minimum amount of base currency for an order in the specified market. 0 means no minimum.

    Example: 0.0001
    maxOrderInBaseAssetstring

    The maximum amount of base currency for an order in the specified market. 0 means no maximum.

    Example: 50
    minOrderInQuoteAssetstring

    The minimum amount of quote currency for an order in the specified market. 0 means no minimum.

    Example: 5
    maxOrderInQuoteAssetstring

    The maximum amount of quote currency for an order in the specified market. 0 means no maximum.

    Example: 500000
    maxPriceDeviationBpsstringnullable

    The maximum allowed deviation of a quoted price from the reference price, in basis points. Returned as a decimal string. Quotes outside this band are rejected. null means no limit.

    Example: 50
  • ]