HomeAboutMeBlogGuest
© 2025 Sejin Cha. All rights reserved.
Built with Next.js, deployed on Vercel
🧚
[1기]최종 프로젝트 데브코스
/
📜
[팀13] 사각사각 ✏️
/
🗒️
다이어그램 문서
/
📄
내 채널 조회 API
📄

내 채널 조회 API

Tags
API
작성자
Method
GET

다이어그램

 
 
 

End Point

/channel/me

Request

-> 토큰만 보내면 됩니다!
 

Response

// 썸네일 // 모집상태 // 타이틀 // 작가 정보(유저 아이디, 닉네임) // 좋아요 카운트 // 소개 문장 // 카테고리 // 모집 시작일, 종료일 // 연재 시작일, 종료이 { "success": true, "httpMethod": "string", "statusCode": 0, "code": "string", "data": { "user": { "userId": 0, "email": "string", "profileImage": "string", "profileIntroduce": "string", "nickname": "string" }, "followIngCount": 0, "followWriterList": [ { "userId": 0, "id": 0, "profileImage": "string", "seriesStatus": "string" } ], "likeList": [ { //->모집중인 상태. : seriesStatus //-> 작가 닉네임. : nickname //-> writerId. + userId "id": 0, "thumbnail": "string", "title": "string", "introduceSentence": "string", "startDate": "2021-12-08", //모집 시작인 "endDate": "2021-12-08", //모집 종료일 "likes": 0, "category": "POEM" } ], "subscribeList": [ { //-> 모집중인 상태 //-> 작가 닉네임 //-> 작가 아이디. "id": 0, "thumbnail": "string", "title": "string", "introduceSentence": "string", "startDate": "2021-12-08", "endDate": "2021-12-08", "likes": 0, "category": "POEM" } ], "followCount": 0, "seriesPostList": [ { //-> 모집중인 상태 //-> 작가 닉네임 //-> 작가 아이디. "id": 0, "thumbnail": "string", "title": "string", "introduceSentence": "string", "startDate": "2021-12-08", "endDate": "2021-12-08", "likes": 0, "category": "POEM" } ] } }