Returns a list of all available currency pairs with public data.
This method provides information about supported exchange directions, including currencies, networks, reserves, rounding precision, and logos.
It is used to generate a list of pairs for the storefront or exchange interface.
URL
https://quickex.io/api/v1/pairs/public
Parameters
None
Request Example (cURL)
curl -X GET \
'https://quickex.io/api/v1/pairs/public' \
-H 'Accept: application/json'
Example Response (200)
[
{
"instrumentFrom": {
"currencyTitle": "SOL",
"networkTitle": "SOL",
"currencyFriendlyTitle": "SOL",
"slug": "sol",
"precisionDecimals": 4,
"reservesAmount": "3968.78",
"instrumentType": "crypto",
"bestChangeCurrencyName": "SOL",
"currencyLogoLink": "https://static.coinall.ltd/cdn/oksupport/asset/currency/icon/sol.png"
},
"instrumentTo": {
"currencyTitle": "LTC",
"networkTitle": "LTC",
"currencyFriendlyTitle": "LTC",
"slug": "ltc",
"precisionDecimals": 3,
"reservesAmount": "9353.26",
"instrumentType": "crypto",
"bestChangeCurrencyName": "LTC",
"currencyLogoLink": "https://static.coinall.ltd/cdn/oksupport/asset/currency/icon/ltc.png"
},
"isActive": true
}
]
Notes
- Each pair contains an
instrumentFrom object (source currency) and an instrumentTo object (target currency).
- The
isActive field indicates whether the pair is available for exchange.
reservesAmount shows the available liquidity for the corresponding currency.
- The
precisionDecimals value defines the number of decimal places for calculations.