Verifying account balance
✅ Verifying account balance
curl --location 'https://api.deltadefi.io/accounts/balance' \
--header 'X-API-KEY: <your_api_key>'const axios = require('axios');
let config = {
method: 'get',
maxBodyLength: Infinity,
url: 'https://api.deltadefi.io/accounts/balance',
headers: {
'X-API-KEY': '<your_api_key>'
}
};
axios.request(config)
.then((response) => {
console.log(JSON.stringify(response.data));
})
.catch((error) => {
console.log(error);
});
[
{
"asset": "ada",
"asset_unit": "",
"free": 0,
"locked": 100
}
]Related FAQ
Last updated