# Address Book

## Create Address

<mark style="color:green;">`POST`</mark> `https://api.vaultoro.com/v1/private/address`

This endpoint allows to add an address to the address book.

#### Headers

| Name          | Type   | Description  |
| ------------- | ------ | ------------ |
| Authorization | string | Bearer token |

#### Request Body

| Name     | Type   | Description |
| -------- | ------ | ----------- |
| tag      | string |             |
| address  | string |             |
| nickname | string |             |
| asset    | string | asset name  |
| otp      | string |             |

{% tabs %}
{% tab title="200 Cake successfully retrieved." %}

```
{    "name": "Cake's name",    "recipe": "Cake's recipe name",    "cake": "Binary cake"}
```

{% endtab %}

{% tab title="404 Could not find a cake matching this query." %}

```
{    "message": "Ain't no cake like that."}
```

{% endtab %}
{% endtabs %}
