# Карточки адресов

## Список адресов

<mark style="color:green;">`GET`</mark> `api.waix.ru/user/address`

Уникальность карточки строится на основе 4 полей: name, phone, city, address — если одно из этих полей было изменено, считаем как отдельную карточку уникального адреса

**Ожидаемые QUERY параметры**

| Name    | Type   | Description |
| ------- | ------ | ----------- |
| `token` | string | Ключ-токен  |

**Response**

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

```json
{
    "status": "OK",
    "result": [
        {
            "name": "Абьюзов Мега Вольтович",
            "phone": "79041001122",
            "city": "Москва",
            "address": "ул. Обиженных девиц, дом 1"
        },
        {
            "name": "Писанов Кама Отзовичкович",
            "phone": "79001003322",
            "city": "Сочи",
            "address": "ул. Неутомленных деятелей 18"
        }
    ]
}
```

{% endtab %}
{% endtabs %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://doc.waix.ru/api/user/address.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
