GET wallets
Get authorized user's wallets info.
Endpoint URL
https://mid.maneslab.xyz/api/v1/walletsOAuth 2.0 scopes required by this endpoint
Sample code
let options = {
method: 'Get',
headers: {
"authorization": `Bearer ${OAUTH-TOKEN}`,
"content-type": "application/x-www-form-urlencoded",
},
};
fetch('https://mid.maneslab.xyz/api/v1/wallets', options)
.then(response => response.json())
.then(response => {
console.log(response)
})
.catch(err => console.error(err));Example response
Last updated