HomeAboutMeBlogGuest
© 2025 Sejin Cha. All rights reserved.
Built with Next.js, deployed on Vercel
🧚
[1기]최종 프로젝트 데브코스
/
🏀
[팀14] 슬램 - 우리 주변 농구장 예약
/
🧭
Domain 설계
/
[GET] /api/v1/users/myprofile

[GET] /api/v1/users/myprofile

REQUEST

✅
내 프로필 정보 조회
 

Header

 

RESPONSE

Body
Field
Type
Description
비고
userId
Number
사용자 구별키
nickname
String
사용자 닉네임
profileImage
String
사용자 프로필 이미지
description
String
사용자 한줄 소개
proficiency
String
사용자 숙련도
BEGINNER, INTERMEDIATE, MASTER
positions
Array
사용자 선호 포지션
PG(포인트 가드), SG(슈팅 가드), SF(스몰 포워드), PF(파워 포워드), C(센터), TBD(미정) * 최대 2개 선택 가능
followerCount
Number
사용자 팔로워 수
followingCount
Number
사용자 팔로잉 수
updatedAt
String
사용자 정보 최근 수정 시간
createdAt
String
사용자 정보 최초 생성 시간
  • Body 예시
 
Headers { Authorization: "Bearer {token}" }
{ "user": { "id": "1", "email": "jelly@gmail.com", "nickname": "jelly", "profileImage": "s3에 저장된 프로필 이미지 url", "description": "한줄 소개", "role": "USER", "proficiency": "BEGINNER", "positions": [ "PG", "SG", ], "createdAt": "2021-12-01T12:00:00", "updatedAt": "2021-12-01T12:00:00", }, "followerCount": 325, "followingCount": 118, }