Moventa Vehicle Routing API

Welcome to the Moventa Vehicle Routing API. This service provides optimization for vehicle routing problems using Google OR-Tools.

Available Endpoints

GET / - This welcome page
GET /api/health - Health check endpoint
POST /api/solve-vrp - Solve vehicle routing problems
POST /api/solve-tsp - Solve traveling salesman problems with automatic depot selection
POST /api/solve-lap - Solve location allocation problems

Example Request


{
    "depot": [0, 0],
    "locations": [[1, 1], [2, 2], [3, 3], [4, 4]],
    "num_vehicles": 2,
    "vehicle_capacity": 10,
    "demands": [0, 2, 3, 4, 5]
}
        

Status

The API is currently online and ready to accept requests.

Version: 1.0.0