List supported assets
curl --request GET \
--url https://api.qash.ai/api/v1/exchanges/assetsconst options = {method: 'GET'};
fetch('https://api.qash.ai/api/v1/exchanges/assets', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.qash.ai/api/v1/exchanges/assets"
response = requests.get(url)
print(response.text){
"success": true,
"data": {
"assets": [
{
"code": "USD",
"name": "US Dollar",
"symbol": "$"
},
{
"code": "COP",
"name": "Colombian Peso",
"symbol": "$"
}
]
}
}Exchange rates / TRM
List supported assets
Return the fiat currencies and digital assets currently available for conversion.
GET
/
api
/
v1
/
exchanges
/
assets
List supported assets
curl --request GET \
--url https://api.qash.ai/api/v1/exchanges/assetsconst options = {method: 'GET'};
fetch('https://api.qash.ai/api/v1/exchanges/assets', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.qash.ai/api/v1/exchanges/assets"
response = requests.get(url)
print(response.text){
"success": true,
"data": {
"assets": [
{
"code": "USD",
"name": "US Dollar",
"symbol": "$"
},
{
"code": "COP",
"name": "Colombian Peso",
"symbol": "$"
}
]
}
}This endpoint is public and does not require authentication.
Response
200 - application/json
Supported assets returned successfully.