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

# Получить отчет по чекам

```bash
GET /reports/receipts
```

Получает отчет по чекам.

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

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

## Параметры запроса {#request-params}

#|
|| **Название параметра** | **Описание** ||
|| `cashboxIds` | Список идентификаторов касс ||
|| `from` | Начало периода ||
|| `to` | Конец периода ||
|| `offset` | Смещение пагинации ||
|| `limit` | Максимальное количество записей ||
|| `companyIds` | Список компаний ||
|| `retailPointIds` | Список торговых точек ||
|| `shiftNumber` | Номера смен ||
|| `operationType` | Типы операций ||
|| `docName` | Типы фискальных документов ||
|#

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

```bash
curl -X 'GET' \
'https://public-api.ofd.yandex.net/api/reports/receipts?cashboxIds=10372&from=2026-06-
01&to=2026-06-
07&offset=200&limit=100&companyIds=123&retailPointIds=1234&shiftNumber=6&operationT
ype=1&docName=4' \
-H 'accept: application/json' \
-H 'X-Yandex-Ofd-Token: <token>'
```

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

```json
{
  "data": {
    "outcome": {
      "appliedTaxationType": null,
      "buyerPhoneOrAddress": null,
      "cashTotalSum": 0,
      "creditSum": 0,
      "dateTime": null,
      "docName": null,
      "ecashTotalSum": 244478.97,
      "fiscalDocumentNumber": null,
      "fiscalDriveNumber": null,
      "fiscalSign": null,
      "itemNameFlat": "",
      "itemNdsFlat": "",
      "itemPaymentAgentByProductTypeFlat": "",
      "itemPaymentTypeFlat": "",
      "itemPriceFlat": "",
      "itemProductTypeFlat": "",
      "itemQuantityFlat": 4036,
      "itemSumFlat": 244478.97,
      "kktNumber": null,
      "kktRegId": null,
      "link": null,
      "nds0": 193000,
      "nds10": 0,
      "nds18": 16.91,
      "nds22122": 0,
      "nds22Percent": 5712.13,
      "nds5105": 0,
      "nds5Percent": 0,
      "nds7107": 0,
      "nds7Percent": 0,
      "ndsCalculated10": 0,
      "ndsCalculated18": 0,
      "ndsNo": 19701.5,
      "operationType": null,
      "operator": null,
      "prepaidSum": 0,
      "propertyName": null,
      "propertyValue": null,
      "provisionSum": 0,
      "requestNumber": null,
      "retailAddress": null,
      "retailPlace": null,
      "shiftNumber": null,
      "system_count_rows": 138,
      "totalSum": 244478.97
    },
    "rows": [
      {
        "Id": "8705882642047351-217811-2954561000",
        "Parent": "",
        "appliedTaxationType": "ОСН",
        "buyerPhoneOrAddress": "test@yandex.ru",
        "cashTotalSum": 0,
        "creditSum": 0,
        "dateTime": "2026-06-01 03:00:00",
        "docName": "Кассовый чек",
        "ecashTotalSum": 6000,
        "fiscalDocumentNumber": 111111,
        "fiscalDriveNumber": "9999999902015157",
        "fiscalSign": 2954561111,
        "itemNameFlat": "",
        "itemNdsFlat": "",
        "itemPaymentAgentByProductTypeFlat": "",
        "itemPaymentTypeFlat": "",
        "itemPriceFlat": "",
        "itemProductTypeFlat": "",
        "itemQuantityFlat": "",
        "itemSumFlat": "",
        "kktNumber": "",
        "kktRegId": "3513512642047351",
        "link": "",
        "nds0": 6000,
        "nds10": 0,
        "nds18": 0,
        "nds22122": 0,
        "nds22Percent": 0,
        "nds5105": 0,
        "nds5Percent": 0,
        "nds7107": 0,
        "nds7Percent": 0,
        "ndsCalculated10": 0,
        "ndsCalculated18": 0,
        "ndsNo": 0,
        "operationType": "Приход",
        "operator": "",
        "prepaidSum": 0,
        "propertyName": "psp_payment_id",
        "propertyValue": "payment_f2a51a42615d4abb89de0b3df572ce71|authorization_0000",
        "provisionSum": 0,
        "requestNumber": 110,
        "retailAddress": "141004, Россия, Московская обл., г. Мытищи, ул. Силикатная, д. 19",
        "retailPlace": "http://ya.ru",
        "shiftNumber": 528,
        "system_count_rows": 0,
        "totalSum": 6000
      },
      {
        "Id": "8705882642047351-217811-2954561000-0",
        "Parent": "8705882642047351-217811-2954561000",
        "itemNameFlat": "Лицензия",
        "itemNdsFlat": "НДС 0%",
        "itemPaymentAgentByProductTypeFlat": "",
        "itemPaymentTypeFlat": "Предоплата 100%",
        "itemPriceFlat": 6000,
        "itemProductTypeFlat": "Товар",
        "itemQuantityFlat": 1,
        "itemSumFlat": 6000
      }
    ]
  }
}
```
