1. TripPlan
Airoad
  • TripPlan
    • 사용자의 여행 일정 목록 조회
      GET
    • 여행 일정 생성 세션 생성
      POST
    • 여행 일정 상세 조회
      GET
    • AI 여행 일정 생성 시작
      POST
    • 여행 일정 삭제
      DELETE
    • 여행 일정 제목 수정
      PATCH
    • 일정 장소 순서 교환
      PATCH
    • 여행 일차별 일정 목록 조회
      GET
  • Auth
    • 액세스 토큰 재발급
      POST
    • 로그아웃
      POST
  • Member
    • 현재 로그인한 사용자 정보 조회
      GET
    • 현재 로그인한 사용자 이름 조회
      GET
  • ChatRoom
    • 채팅방 메시지 이력 조회
      GET
  • Schemas
    • TripPlanCreateRequest
    • ChannelIdResponse
    • CommonResponse
    • ReissueTokenRequest
    • CreateAiPromptTemplateRequest
    • TokenResponse
    • TripPlanUpdateRequest
    • UpdateAiPromptTemplateRequest
    • ScheduledPlaceSwapRequest
    • AiPromptTemplateResponse
    • TripPlanResponse
    • TripPlanDetailResponse
    • DailyPlanResponse
    • PlaceResponse
    • ScheduledPlaceResponse
    • MemberResponse
    • MemberNameResponse
    • ChatMessageResponse
    • TripPlanProgressMessage
    • ChatStreamDto
    • ChatMessageRequest
    • ErrorResponse
    • PageResponse
  1. TripPlan

사용자의 여행 일정 목록 조회

GET
/api/v1/trips
로그인한 사용자의 여행 일정 목록을 커서 기반 페이지네이션으로 조회합니다.

Request

Authorization
JWT Bearer
Add the parameter
Authorization
to Headers
Example:
Authorization: ********************
or
Query Params

Responses

🟢200
application/json
조회 성공
Body

🟠400
🟠401
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/api/v1/trips?size=10&cursor&sort=createdAt:desc' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - 첫 페이지 조회 성공(다음 페이지 존재)
{
    "success": true,
    "status": 200,
    "data": {
        "content": [
            {
                "id": 15,
                "memberId": 1,
                "chatRoomId": 105,
                "title": "제주도 힐링 여행",
                "startDate": "2025-03-01",
                "isCompleted": false,
                "region": "제주",
                "imageUrl": "https://example.com/images/jeju.jpg"
            },
            {
                "id": 14,
                "memberId": 1,
                "chatRoomId": 104,
                "title": "부산 맛집 투어",
                "startDate": "2025-02-15",
                "isCompleted": false,
                "region": "부산",
                "imageUrl": "https://example.com/images/busan.jpg"
            },
            {
                "id": 13,
                "memberId": 1,
                "chatRoomId": 103,
                "title": "서울 3박 4일",
                "startDate": "2025-01-20",
                "isCompleted": true,
                "region": "서울",
                "imageUrl": "https://example.com/images/seoul.jpg"
            }
        ],
        "nextCursor": 13,
        "hasNext": true,
        "size": 3
    }
}
Modified at 2025-12-19 08:15:40
Next
여행 일정 생성 세션 생성
Built with