Skip to content

✔추천 고양이 리스트

alia edited this page Jul 8, 2020 · 6 revisions
메소드 경로 설명
GET /search/recommend 검색창 하단에 입맛이 비슷한 고양이를 찾아줌

Response

< Success >

{
    "status": 200,
    "success": true,
    "message": "추천 고양이 리스트 조회 성공",
    "data": [
            {
                "profileIdx": 1,
                "profileImg":"https://~",
                "profileName":"고양이 이름"
            },
             {
                "profileIdx": 5,
                "profileImg":"https://~",
                "profileName":"고양이 이름"
            }
        ]
    }
  • profileIdx : 고양이 인덱스,
  • profileImg : 고양이 프로필 사진,
  • profileName : 고양이 이름

< Fail >

  • 데이터 반환 에러
{
    "status": 404,
    "success": false,
    "message": "입맛이 비슷한 고양이 목록 데이터 반환 실패"
}