curl --location --request POST '/serviceability' \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data-raw '{
"pickupLocation": {
"latitude": 12.9352,
"longitude": 77.6245
},
"dropLocation": {
"latitude": 12.9716,
"longitude": 77.5946
},
"weight": 2.5,
"orderAmount": 500
}'{
"success": true,
"message": "Serviceability checked successfully",
"data": {
"serviceable": true,
"distance": 5.2,
"duration": 25,
"pricing": {
"totalPrice": 75.5,
"grandTotal": 85,
"fareBreakup": {
"distance_charges": {
"amount": 50,
"km": 5.2
},
"weight_charges": {
"amount": 15,
"kg": 2.5
},
"platform_fee": {
"amount": 10
},
"handling_fee": {
"amount": 5
},
"gst": {
"amount": 5,
"percentage": 5
}
}
}
}
}