GET wallets

Get authorized user's wallets info.

Endpoint URL

https://mid.maneslab.xyz/api/v1/wallets

OAuth 2.0 scopes required by this endpoint

profile

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

[
    {
      "id":"6406e0b96950c2aafa2056ca",
      "address":"xxxxxxxx",
      "chain":{
          "chain_id":"1",
          "name" : "Ethereum"
      },
      "name":"wallet1"
    },
    ...
]

Last updated