curl --location --request GET '/api/v1/trips/123' \
--header 'Authorization: Bearer <token>'{
"success": true,
"status": 200,
"data": {
"tripPlanId": 123,
"title": "제주도 힐링 여행",
"region": "제주",
"startDate": "2025-03-01",
"isCompleted": true,
"duration": 3,
"peopleCount": 2,
"themes": [
"HEALING",
"FAMOUS_SPOT",
"RESTAURANT"
]
}
}