Wallet Info
Method
GET https://prod.ninjapay.me/sapi/v1/wallet
Parameters
Response
{"wallet_lbtc": <string>, "balance_lbtc": <int>}Example
const options = {
method: 'GET',
headers: {
'Content-Type': 'application/json',
Authorization: 'API_KEY'
},
body: '{"wallet":"lbtc"}'
};
fetch('https://prod.ninjapay.me/sapi/v1/wallet', options)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));
Last updated