> For the complete documentation index, see [llms.txt](https://apidocs.nhanh.vn/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://apidocs.nhanh.vn/v2/website/articlecategory.md).

# Danh mục tin tức

* /api/article/categories: Tính năng này được sử dụng để lấy toàn bộ danh mục tin tức của doanh nghiệp trên Nhanh.vn.

## Request

Xem các [common request params](/v2/readme.md#request-params)

## Response

JSON decode the response to get the structure:

| Key      | Type  | Description                                   |
| -------- | ----- | --------------------------------------------- |
| code     | int   | 1 = success or 0 = failed                     |
| messages | array | is an array of error messages if code = 0     |
| data     | array | is an array of product category (multi-level) |

```javascript
[
    [
        "id" => int,
        "name" => string,
        "status" => int,
        "parentId" => int,
        "childs" => [ // child categories
            [
                "id" => int,
                "name" => string,
                "status" => int,
                "parentId" => int,
                "childs" => [
                    ...
                ],
            ],
            ...
        ]
    ],
    ...
]
```
