# Wallet

## Addresses

<mark style="color:blue;">`GET`</mark> `https://nodes.lto.network/wallet/addresses`

Get list of all accounts addresses in the node's wallet.

{% tabs %}
{% tab title="200 " %}

```javascript
[
  "3NBVqYXrapgJP9atQccdBPAgJPwHDKkh6A8",
  "3Mx2afTZ2KbRrLNbytyzTtXukZvqEB8SkW7"
]
```

{% endtab %}
{% endtabs %}

## Address range

<mark style="color:blue;">`GET`</mark> `https://nodes.lto.network/wallet/addresses/seq/:from/:to`

Get list of accounts addresses with indexes at this range in the node's wallet.

#### Path Parameters

| Name | Type   | Description |
| ---- | ------ | ----------- |
| from | number |             |
| to   | number |             |

{% tabs %}
{% tab title="200 " %}

```javascript
[
  "3NBVqYXrapgJP9atQccdBPAgJPwHDKkh6A8",  
  "3Mx2afTZ2KbRrLNbytyzTtXukZvqEB8SkW7"
]
```

{% endtab %}
{% endtabs %}

## Add address

<mark style="color:green;">`POST`</mark> `https://nodes.lto.network/wallet/addresses`

Generate a new account address in the wallet.

#### Path Parameters

| Name | Type   | Description |
| ---- | ------ | ----------- |
|      | string |             |

#### Headers

| Name          | Type   | Description          |
| ------------- | ------ | -------------------- |
| Authorization | string | "Bearer " + API\_KEY |

{% tabs %}
{% tab title="200 " %}

```javascript
{
  "address": "3Mx2afTZ2KbRrLNbytyzTtXukZvqEB8SkW7"
}
```

{% endtab %}
{% endtabs %}

###
