---
metadata:
  - name: generator
    content: Diplodoc Platform v5.50.3
alternate:
  - https://yandex.ru/support/ofd-api/ru/reference/get-companies.md
---
> **Documentation Index:** Fetch the complete configuration index at https://yandex.ru/support/ofd-api/ru/llms.txt

# Получить список компаний

```bash
GET /companies
```

Получает список компаний, подключенных в личном кабинете.

## Заголовки запроса {#headers}

<!-- source: ru/_includes/ofd-token-header.md -->
#|
|| **Название заголовка** | **Описание** ||
|| `X-Yandex-Ofd-Token` | Токен доступа к API ||
|#
<!-- endsource: ru/_includes/ofd-token-header.md -->

## Пример запроса {#request-example}

```bash
curl -X 'GET' \
'https://public-api.ofd.yandex.net/api/companies' \
-H 'accept: application/json' \
-H 'X-Yandex-Ofd-Token: <token>'
```

## Пример ответа {#response-example}

```json
[
  {
    "id": 558,
    "inn": "7701140140",
    "ogrn": "7777746854850",
    "kpp": "770101007",
    "short_name": "ООО \"СТАРЫЕ СИСТЕМЫ\"",
    "full_name": "ОБЩЕСТВО С ОГРАНИЧЕННОЙ ОТВЕТСТВЕННОСТЬЮ \"СТАРЫЕ СИСТЕМЫ\"",
    "postal_code": "123999",
    "email": "test@yandex.ru",
    "phone": "79249431905",
    "manager_name": "Передрейфус Михаил Григорьевич",
    "address": "адрес",
    "fns": "7777",
    "client_id": 152,
    "send_sms": false,
    "send_email": false,
    "company_notification": {
      "notification_info": {
        "allow_notification": true,
        "unpaid_invoices_count": 0,
        "paid_invoices_count": 0,
        "last_unpaid_month": null
      }
    }
  }
]
```
