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.
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
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 inGBP.PRICE_GUARANTEE_CONVERT— the Price Guarantee RFQ variant used for asset-to-asset conversions (the Convert product).
Returns markets for the specified type of RFQ. If not specified, returns markets for all types.
Possible values:
PRICE_GUARANTEEIf true, returns only tradeable markets. If false, returns only non-tradeable markets. If not specified, returns all markets.
Returns the specified market.
BTC-EURResponses
- 200
- Errors
The request was successful.
- application/json
- Schema
- Example (body)
Schema
- Array [
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 inGBP.PRICE_GUARANTEE_CONVERT— the Price Guarantee RFQ variant used for asset-to-asset conversions (the Convert product).- ]
The market in BASE-QUOTE format.
BTC-EURThe base asset of the market.
BTCThe quote asset of the market.
EURThe type of the RFQ. Possible values:
Possible values: [STABLECOIN_PARITY, PRICE_GUARANTEE, PRICE_GUARANTEE_UK, PRICE_GUARANTEE_CONVERT]
Indicates whether the market is tradeable.
trueThe minimum price increment of the market. A quoted price must be a multiple of this value.
Matches the
tickSizevalue returned by Get markets.
0.01The maximum number of decimal places for the base-asset amount.
8The 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.
2The minimum amount of base currency for an order in the specified market. 0 means no minimum.
0.0001The maximum amount of base currency for an order in the specified market. 0 means no maximum.
50The minimum amount of quote currency for an order in the specified market. 0 means no minimum.
5The maximum amount of quote currency for an order in the specified market. 0 means no maximum.
500000The 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.
50[
{
"market": "BTC-EUR",
"base": "BTC",
"quote": "EUR",
"rfqType": "STABLECOIN_PARITY",
"enabled": true,
"tickSize": "0.01",
"quantityDecimals": 8,
"notionalDecimals": 2,
"minOrderInBaseAsset": "0.0001",
"maxOrderInBaseAsset": "50",
"minOrderInQuoteAsset": "5",
"maxOrderInQuoteAsset": "500000",
"maxPriceDeviationBps": "50"
}
]
For error codes, see Handle errors.