Created 2024/09/30

Edited 2024/09/30


餐廳論壇 API 查詢表 :

Restaurant 有關的路由:

前台 :

遊覽全部的餐廳

使用者可以遊覽全部餐廳,可以使用 query 參數選擇類別

GET  /api/restaurants

Parameters

param Description
categoryId 餐廳分類號碼(可選)

輸出 :

{
    "status": "success",
    "result": {
        "restaurants": [
            {
                "id": 2,
                "name": "Annie Ankunding",
                "tel": "217-944-8245",
                "address": "924 Kuhlman Stravenue",
                "openingHours": "10:00",
                "description": "YYAliquid quia repellat officiis commodi consequat",
                "image": "/upload/438861478_796723265233392_6379929708989652140_n.jpg",
                "categoryId": 5,
                "viewCounts": 1,
                "createdAt": "2024-09-30T12:49:12.000Z",
                "updatedAt": "2024-09-30T13:45:09.000Z",
                "Category": {
                    "id": 5,
                    "name": "素食料理",
                    "createdAt": "2024-09-30T12:49:11.000Z",
                    "updatedAt": "2024-09-30T12:49:11.000Z"
                },
                "isFavorited": false,
                "isLiked": false
            }
            ......
        ],
        "categories": [
            {
                "id": 1,
                "name": "中式料理",
                "createdAt": "2024-09-30T12:49:11.000Z",
                "updatedAt": "2024-09-30T12:49:11.000Z"
            },
            {
                "id": 2,
                "name": "日本料理",
                "createdAt": "2024-09-30T12:49:11.000Z",
                "updatedAt": "2024-09-30T12:49:11.000Z"
            },
            ......
        ],
        "categoryId": 5,
        "pagination": {
            "totalPage": 1,
            "pages": [
                1
            ],
            "currentPage": 1,
            "prev": 1,
            "next": 1
        }
    }
}

最新 10 筆餐廳、評論

提供最新 10 筆餐廳、評論資訊

GET  /api/restaurants/feeds