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

# Store Detail

<mark style="color:blue;">`GET`</mark> `https://foodfly.shop/category/category_pk/store/store_pk/`

category\_pk와 store\_pk를 URL에 담아서 요청

{% tabs %}
{% tab title="200 Cake successfully retrieved." %}

```javascript
{
    "pk": pk,
    "store_category": store_category,
    "name": name,
    "img_profile": img_profile,
    "store_info": store_info,
    "origin_info": origin_info,
    "created_at": created_at,
    "owner": owner,
    "least_cost": least_cost,
    "takeout": takeout,
    "fee": fee,
    "food_set": [
            {
                "pk": pk,
                "name": name,
                "img_profile": img_profile,
                "price": price,
                "stock": stock,
                "store": store,
                "set_menu": set_menu,
                "food_info": food_info
            }
    ]
}
```

{% endtab %}

{% tab title="400 Could not find a cake matching this query." %}

```javascript
{
    "detail": "잘못된 요청입니다."
}
```

{% endtab %}
{% endtabs %}
