Get multiple transactions
/account/transactions
You might want to get info about multiple transactions from an account , here is how to it, Chief π
GET https://live.chimoney.io/api/v0.1/account/transactions
Get multiple transactions from an account
Headers
Name
Type
Description
X-API-Key*
API_KEY_FROM_DEV_PORTAL
{
// transaction's 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/account/transactions", 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