Welcome to the Moventa Vehicle Routing API. This service provides optimization for vehicle routing problems using Google OR-Tools.
/ - This welcome page
/api/health - Health check endpoint
/api/solve-vrp - Solve vehicle routing problems
/api/solve-tsp - Solve traveling salesman problems with automatic depot selection
/api/solve-lap - Solve location allocation problems
{
"depot": [0, 0],
"locations": [[1, 1], [2, 2], [3, 3], [4, 4]],
"num_vehicles": 2,
"vehicle_capacity": 10,
"demands": [0, 2, 3, 4, 5]
}
The API is currently online and ready to accept requests.
Version: 1.0.0