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

[GET] /api/v1/favorites

✅
농구장 즐겨찾기 리스트 보기

Request

Headers

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

 

Response

Body
Field
Type
Description
비고
favorites.[].favoriteId
Number
즐겨찾기 아이디
favorites.[].courtId
Number
농구장 아이디
favorites.[].courtName
String
농구장 이름
favorites.[].latitude
Number
농구장 위도
favorites.[].longtitude
Number
농구장 경도
favorites.[].createdAt
String
생성 시간
YYYY-mm-DDThh:MM:ss
favorites.[].updatedAt
String
수정 시간
YYYY-mm-DDThh:MM:ss
  • Body 예시
{ "contents": [ { "id": "1", "createdAt": "2021-01-01T12:20:10.000Z", "updatedAt": "2021-01-01T12:20:10.000Z", "courtId": "3", "courtName": "용산 농구장", "latitude": 34.567234, "longitude": 12.493048, }, { "id": "2", "createdAt": "2021-01-01T12:20:10.000Z", "updatedAt": "2021-01-01T12:20:10.000Z", "courtId": "3", "courtName": "광화문 농구장", "latitude": 34.567234, "longitude": 12.493048, }, ] }