List

/wallets/list

You might want to get all the wallets of a user or team, here is how to it, Chief πŸ˜‰

GET https://live.chimoney.io/api/v0.1/wallets/list

Get all the wallets of a user or team. This returns the wallets owned by the account that is making the request

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: 'POST',
  headers: myHeaders,
  redirect: 'follow'
};

fetch("https://live.chimoney.io/api/v0.1/wallets/list", requestOptions)
  .then(response => response.text())
  .then(result => console.log(result))
  .catch(error => console.log('error', error));

#Python REQUESTS

#PHP cURL

Last updated