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

[GET] /api/v1/courts/detail/{courtId}/{date}/{dawn}

✅
사용자가 선택한 코트에 대한 자세한 정보 읽어오기

Request

Headers

headers { Authorization: "Bearer ${token}" }

Request

PathVariable
Field
Type
Description
비고
courtId
Number
코트 아이디
date
String
날짜
2019-05-11 (일시)
time
String
새벽 아침 낮 저녁
00:00~05:59 (새벽) / 06:00~11:59 (아침) / 12:00~17:59 (오후) / 18:00~23:59(밤)
 
 

Response

Body
Filed
Type
Description
비고
courtName
Number
농구장 이름
latitude
Number
농구장 위도
longitude
Number
농구장 경도
courtReservation
Number
코트 예약자 수
image
String
농구장 이미지
texture
Number
농구장 재질
basketCount
Number
골대 갯수
createdAt
String
농구장 생성 시간
날짜 포맷: YYYY-mm-DDThh:MM:ss
updatedAt
String
농구장 수정 시간
날짜 포맷: YYYY-mm-DDThh:MM:ss
  • Body 예시
{ "courtName": "관악구민운동장 농구장", "latitude": 38.987654, "longtitude": 12.309472, "courtReservation" : 3, "image": "aHR0cHM6Ly9pYmIuY28vcXMwSnZXYg", "texture": "ASPHALT", "basketCount": 2, "createdAt": "2021-01-01T12:20:10", "updatedAt": "2021-01-01T12:20:10" }