Skip to content

Currency Pairs

GET
/v1/public/pairs

Get a list of all the currency pairs supported by VALR.

Responses

List of all currency pairs

application/json
JSON
[
{
"symbol": "ETHZAR",
"baseCurrency": "ETH",
"quoteCurrency": "ZAR",
"shortName": "ETH/ZAR",
"active": true,
"minBaseAmount": "0.0002",
"maxBaseAmount": "69.21",
"minQuoteAmount": "10",
"maxQuoteAmount": "5000000",
"tickSize": "1",
"baseDecimalPlaces": "8",
"marginTradingAllowed": true,
"currencyPairType": "SPOT",
"initialMarginFraction": "0.2",
"maintenanceMarginFraction": "0.1",
"autoCloseMarginFraction": "0.033333333"
},
{
"symbol": "ETHUSDTPERP",
"baseCurrency": "ETH",
"quoteCurrency": "USDT",
"shortName": "ETH/USDTPERP",
"active": true,
"minBaseAmount": "0.001",
"maxBaseAmount": "32",
"minQuoteAmount": "1",
"maxQuoteAmount": "100000",
"tickSize": "0.1",
"baseDecimalPlaces": "3",
"marginTradingAllowed": false,
"currencyPairType": "FUTURE",
"initialMarginFraction": "0.025",
"maintenanceMarginFraction": "0.0125",
"autoCloseMarginFraction": "0.0125"
}
]

Playground

Samples