Assets
/info/assets
You might want to get the list of supported assets , here is how to it, Chief π
GET https://live.chimoney.io/api/v0.1/info/assets
Get the list of supported assets from the Chimoney Asset Cloud.
Headers
Name
Type
Description
X-API-Key*
API_KEY_FROM_DEV_PORTAL
{
// transaction detail
}#Javascript FETCH
var myHeaders = new Headers();
myHeaders.append("X-API-Key", "API_KEY_FROM_DEV_PORTAL");
var requestOptions = {
method: 'GET',
headers: myHeaders,
redirect: 'follow'
};
fetch("https://live.chimoney.io/api/v0.1/info/assets", requestOptions)
.then(response => response.text())
.then(result => console.log(result))
.catch(error => console.log('error', error));#Python REQUESTS
#PHP cURL
Yay! It's done.
Last updated