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

[GET] /api/v1/users/{userId}

✅
다른 사람 회원 프로필 조회

REQUEST

Header

 
PathVariable
Filed
Type
Description
비고
userId
Number
사용자 구별키

RESPONSE

Body
Field
Type
Description
비고
userId
Number
사용자 구별키
nickname
String
사용자 닉네임
isFollowing
Boolean
팔로우 여부
followerCount
Number
팔로워 수
followingCount
Number
팔로잉 수
profileImage
String
사용자 프로필 이미지
description
String
사용자 한줄 소개
proficiency
String
사용자 숙련도
BEGINNER, INTERMEDIATE, MASTER
positions
Array
사용자 선호 포지션
PG(포인트 가드), SG(슈팅 가드), SF(스몰 포워드), PF(파워 포워드), C(센터), TBD(미정) * 최대 2개 선택 가능
createdAt
String
사용자 정보 최초 생성 시간
updatedAt
String
사용자 정보 최근 수정 시간
favoriteCourts
Array
즐겨찾기한 농구장들
favoriteCourts.[].courtId
Number
즐겨찾기한 농구장의 구별키
favoriteCourts.[].courtName
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": 5, "followingCount": 3, "isFollowing": true, "favorites": [ { "id": 1, "court": { "id": 1, "name": "용산구 농구장", } }, { "id": 2, "court": { "id": 3, "name": "광주 농구장", } } ] }