Lookup
/wallets/lookup
You might want to Lookup or get the details of a wallet, here is how to it, Chief π
GET https://live.chimoney.io/api/v0.1/wallets/lookup
Lookup or get the details of a wallet. The ID of the wallet is the required.
Path Parameters
Name
Type
Description
walletID*
ID_OF_WALLET
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 raw = "{\n \"walletID\": \"ID_OF_WALLET\"\n}";
var requestOptions = {
method: 'POST',
headers: myHeaders,
body: raw,
redirect: 'follow'
};
fetch("https://live.chimoney.io/api/v0.1/wallets/lookup", 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