[홈 뷰] 음식 카테고리 조회 API - sopt28-ClDiSer-team11/Server GitHub Wiki
http://3.35.48.11:5000/api/main/category
📍URL :Request
메소드 | 경로 | 설명 |
---|---|---|
GET | /main/category | 음식 카테고리 조회 |
Response Body
// Body
[
{
"image": String,
"title": String
}
]
Response
성공
{
"status": 200,
"success": true,
"message": "음식 카테고리 조회 성공.",
"data": [
{
"image": "asdq123.jpg",
"title": "신규맛집"
},
{
"image": "asdq123.jpg",
"title": "1인분"
}
]
}
실패
- 서버 내부 에러
{
"status": 500,
"success": false,
"message": "서버 내부 에러."
}