We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
설명
첫 화면에 표시될 카테고리명과 카테고리 이미지를 보내주기 위한 API 입니다.
request
GET {{baseUrl}}/stores/categories?type=음식배달
response
{ "code": 200, "categoryList": [ { "categoryImageUrl": "https://~~", "categoryName": "치킨" }, { "categoryId": "https://~~", "categoryName": "중식" } ... ] }
category로 구분해서 store 리스트를 가져오는 api
GET {{baseUrl}}/stores?category=치킨
{ "code": 200, "stores": [ { "storeName": "맛있는 치킨집", "deliveryPrice": 2000, "minimumOrderPrice": 15000, "rating": 4.8, "estimatedDeliveryTime": "30-40분", "menuList": [ { "menuImageUrl": "https://~~/crispy_chicken.jpg", "menuName": "크리스피 치킨", "menuPrice": 18000 }, { "menuImageUrl": "https://~~/spicy_chicken.jpg", "menuName": "매운 치킨", "menuPrice": 20000 } ] }, { "storeName": "바삭한 치킨", "deliveryPrice": 2500, "minimumOrderPrice": 12000, "rating": 4.5, "estimatedDeliveryTime": "40-50분", "menuList": [ { "menuImageUrl": "https://~~/bbq_chicken.jpg", "menuName": "BBQ 치킨", "menuPrice": 19000 }, { "menuImageUrl": "https://~~/soy_chicken.jpg", "menuName": "간장 치킨", "menuPrice": 21000 } ] } ] }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
ERD
API
getStoreCategoryList
설명
request
GET {{baseUrl}}/stores/categories?type=음식배달
response
getStoreListByCategory
설명
request
GET {{baseUrl}}/stores?category=치킨
response
The text was updated successfully, but these errors were encountered: