Request
GET http://localhost:8080/api/restaurants/{id}
Content-Type: application/json
Authorization: Bearer {{access_token}}
JSON
복사
Response
200
GET http://localhost:8080/api/restaurants
{
  "code": "RESTAURANT-RES001",
  "message": "요청이 성공적으로 완료되었습니다.",
  "information": 
    {
      "id": "ba2b8d48-6b65-4916-b485-67e658136c4e",
			"name": "우진 해장국"
			"images": ["/restaurants/image001.png", ...]
			"menus": [
				{
					"id": "cq8e8d48-6b65-4916-b485-67e6581363sa",
					"name": "고사리 육개장",
					"image": "/restaurants/{id}/menus/image001.png",
					"price": 9000
				},
				...
			],
			"howToGo": "동문 재래 시장에서 도보 9분",
			"simpleAddress": "제주 시내",
			"address": "제주특별자치도 제주시 서사로 11",
			"openTime": [
				// 값이 없으면 휴무일
				{
					"day": "Mon",
					"serving": "06:00 - 22:00",
					"breakTime": "15:00 - 17:00", 
				},
				{
					"day": "Tue",
					"serving": "06:00 - 22:00",
					"breakTime": "15:00 - 17:00", 
				}
			],
			"introduction": "'수요미식회'에 방영된, 따끈한 국물 요리로 해장하기 좋은 음식점",
			"tips": [
				"주변 공영 주차장 이용 가능",
				"합석 가능성 있음",
				...
			]
    }
}
JSON
복사
201
Shell
복사
400
JSON
복사
401
JSON
복사
403
JSON
복사
404
JSON
복사
409
JSON
복사
.png)