> For the complete documentation index, see [llms.txt](https://docs.maneslab.xyz/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.maneslab.xyz/api-integration/api/get-wallets.md).

# GET wallets

### **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**

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