
DxSpot Team
The Pairs section contains methods for obtaining information about trading pairs available on the DxSpot platform. A “pair” is understood as an exchange direction from one currency to another (e.g. SOL → LTC). Data from this section allows you to build a showcase of the exchanger, determine which currencies and networks are available, find out available reserves and rounding accuracy parameters.
The methods in this section return only public information, which can be used both for integration into your own interface and for displaying current exchange directions to users.
Endpoint URL
https://dxspot.io/api/v1/pairs/public
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://dxspot.io/api/v1/pairs/public
Parameters
None
Request Example (cURL)
curl -X GET \
'https://dxspot.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.
curl -X 'GET' \
'https://dxspot.io/api/v1/pairs/public' \
-H 'accept: application/json'