You might want to get all the wallets of a user or team, here is how to it, Chief 😉
Get all the wallets of a user or team. This returns the wallets owned by the account that is making the request
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));
import requests
url = "https://live.chimoney.io/api/v0.1/wallets/list"
payload={}
headers = {
'X-API-Key': 'API_KEY_FROM_DEV_PORTAL'
}
response = requests.request("POST", url, headers=headers, data=payload)
print(response.text)
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://live.chimoney.io/api/v0.1/wallets/list',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_HTTPHEADER => array(
'X-API-Key: API_KEY_FROM_DEV_PORTAL'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;