API Usage
The API server allows you to interact with the application via HTTP GET requests. This enables you to calculate paths, compare algorithms, and manage settings programmatically.
Starting the API Server
API server running on port <port>
Try the longest path -> http://localhost:<port>/path?start=9588784&end=2720178API Endpoints
Basic Shortest Path
GET http://localhost:<port>/path?start=1&end=5{ "path": [1, 3, 5], "distance": 12.5 }
Debug Path
Comparator Path
Command Endpoint
Response Formats
Stopping the API Server
Last updated