[상세보기 뷰] 가게 상세보기 조회 API - sopt28-ClDiSer-team11/Server GitHub Wiki

📍URL : http://3.35.48.11:5000/api/detail/:storeIdx

:storeIdx   
1  = 라라레스토랑  
2 = 여우골초밥  

ex) 여우골초밥 데이터를 가져오고 싶은 경우 ~/detail/2 로 요청하면 됩니다!

Request

메소드 경로 설명
GET /detail/:storeIdx 가게 상세보기 조회

Response Body

// Body
[
	"_id" : number,
	"title" : string,
	"star" : string,
	"review": string,
	"cheetahImage": string,
	"minute" : string,
	"fee": string,
	"minimumPrice": string,
	"notice": string
]

Response

성공

{
    "status": 200,
    "success": true,
    "message": "배너 조회 성공.",
    "data": [
				"_id" : 1,
				"title" : "라라레스토랑",
				"star" : "4.8",
				"review": "300",
				"cheetahImage": "123.jpg",
				"minute" : "15~25분",
				"fee": "2,000원",
				"minimumPrice": "10,000원",
				"notice": "라라레스토랑은 양재천이 흐르며 나무숲 가득한 도곡동에 위치해 있습니다. 사계절 모두 특색 있는 라라만의 감성을 느끼실 수 있습니다."
		]
}
  • storeIdx에 해당하는 데이터가 없는 경우
{
    "status": 200,
    "success": true,
    "message": "가게 데이터 없음",
    "data": null
}

실패

  • 서버 내부 에러
{
    "status": 500,
    "success": false,
    "message": "서버 내부 에러."
}