> For the complete documentation index, see [llms.txt](https://nextify.gitbook.io/api/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://nextify.gitbook.io/api/business-model-api.md).

# Business Model API

## Lấy danh sách mô hình kinh doanh

<mark style="color:blue;">`GET`</mark> `{{base_url}}/business_models`

Cho phép lấy danh sách mô hình kinh doanh

#### Headers

| Name          | Type   | Description             |
| ------------- | ------ | ----------------------- |
| Authorization | string | Bearer \<access\_token> |

{% tabs %}
{% tab title="200 Success" %}

```javascript
{
    "status": 200,
    "message": "Business model data",
    "data": [
        {
            "_id": "5c86160daeb2ff77d5ab50e4",
            "name": "Khách sạn"
        },
        {
            "_id": "5c9ddd00e452d5225bb1ef31",
            "name": "Nhà hàng"
        },
        {
            "_id": "5c9dde98e452d5232c09cbba",
            "name": "Ngân hàng"
        },
        {
            "_id": "5c9ddeaae452d5232c09cbbb",
            "name": "Resort & Nghỉ dưỡng"
        },
        {
            "_id": "5c9ddeb3e452d5232c09cbbc",
            "name": "Spa"
        },
        {
            "_id": "5c9ddec4e452d5232c09cbbd",
            "name": "Coffee Shop"
        },
        {
            "_id": "5c9ddecee452d5232c09cbbe",
            "name": "Co-working Space"
        },
        {
            "_id": "5c9ddee3e452d5232c09cbbf",
            "name": "Phòng tập "
        },
        {
            "_id": "5cbd3d63e452d5a715051f7d",
            "name": "Điểm giao dịch"
        }
    ]
}
```

{% endtab %}

{% tab title="401 access token not found" %}

```javascript
{
    "status_code": "401",
    "message": "access_token not found! Please contact Nextify at support@nextify.vn for help"
}
```

{% endtab %}
{% endtabs %}
