Skip to content

추천 큐레이터 목록 조회

HyeonJooo edited this page Jul 16, 2020 · 4 revisions

추천 큐레이터 목록 조회 (/curator/recommend)

추천큐레이터

Request

URL

[GET] ~/curator/recommend

Header

메소드 파라미터 설명
Content-Type application/json

Response

Description

변수명 설명
curatorIdx 해당 큐레이터 인덱스
name 해당 큐레이터 이름
img 해당 큐레이터 프로필사진
keyword 해당 큐레이터 소개 키워드
subscribe 해당 큐레이터를 구독한 사람 수

SUCCESS

{
    "status": 200,
    "success": true,
    "message": "추천 큐레이터 목록 조회 성공",
    "data": [
        {
            "curatorIdx": 2,
            "name": "래리",
            "img": "img2",
            "keyword": "자기 계발",
            "subscribe": 2
        },
        {
            "curatorIdx": 1,
            "name": "예스리",
            "img": "img1",
            "keyword": "감성 자극",
            "subscribe": 14
        }
    ]
}

FAIL : 큐레이터 목록이 없는 경우

{
    "status": 400,
    "success": false,
    "message": "큐레이터가 없습니다"
}

FAIL : 서버 내부 에러의 경우

{
    "status": 600,
    "success": false,
    "message": "서버 내부 오류"
}
Clone this wiki locally