Retrieve detailed booking information by booking ID:
GET /bookings/{id}
GET /bookings/5
{
"status": "success",
"code": 200,
"message": "Booking retrieved successfully",
"data": {
"booking": {
"id": 5,
"pnr_number": "L2DB92GFBG",
"trip_id": 1,
"date": "2025-08-18",
"time": "10:00:00",
"route_id": 1,
"boarding_id": 1,
"dropping_id": 2,
"total_price": 3000,
"total_discount": 50,
"total_amount": 2950,
"created_at": "2025-08-18T10:30:00.000000Z"
},
"customer": {
"id": 1,
"name": "John Doe",
"mobile": "01712345678",
"email": "john@example.com",
"gender": "Male",
"age": 30,
"address": "123 Main Street, Dhaka",
"passport_no": null,
"nid": "1234567890123",
"nationality": "Bangladeshi"
},
"boarding_info": {
"id": 1,
"trip_id": 1,
"time": "08:00:00",
"counter_id": 1,
"counter_name": "Kallyanpur Counter",
"counter_location": "Near Kallyanpur Bus Stand",
"district_name": "Dhaka"
},
"dropping_info": {
"id": 2,
"trip_id": 1,
"time": "14:00:00",
"counter_id": 2,
"counter_name": "GEC Counter",
"counter_location": "GEC Circle",
"district_name": "Chittagong"
},
"trip_details": {
"trip_id": 1,
"trip_date": "2025-08-18",
"status": 1,
"coach_type": 1,
"coach_type_name": "AC",
"coach": {
"id": 1,
"coach_no": "101",
"status": 1
},
"bus": {
"id": 1,
"registration_number": "DH-123456",
"manufacturer_company": "Volvo",
"model_year": 2020
},
"route": {
"id": 1,
"start_id": 1,
"end_id": 2,
"distance": 264,
"duration": "06:00"
},
"schedule": {
"id": 1,
"name": "10:00"
},
"seat_plan": {
"id": 1,
"name": "AC Business",
"floor": 1,
"rows": 10,
"cols": 4
},
"driver": {
"id": 1,
"name": "Driver Name",
"contact": "01712345678",
"license": "DL123456"
},
"supervisor": {
"id": 1,
"name": "Supervisor Name",
"contact": "01712345679"
}
},
"booked_seats": [
{
"id": 3,
"booking_id": 5,
"seat_inventory_id": 1,
"seat_id": 1,
"price": "1500.00",
"discount": "50.00",
"amount": "1450.00",
"seat": {
"id": 1,
"seat_number": "A1",
"row_position": 1,
"col_position": 1,
"seat_type": "window"
}
},
{
"id": 4,
"booking_id": 5,
"seat_inventory_id": 2,
"seat_id": 2,
"price": "1500.00",
"discount": "0.00",
"amount": "1500.00",
"seat": {
"id": 2,
"seat_number": "A2",
"row_position": 1,
"col_position": 2,
"seat_type": "middle"
}
}
]
}
}
{
"status": "error",
"code": 404,
"message": "Booking not found",
"data": null
}