GUI Web Requests

PEKAT Project Manager can handle several web requests that provide useful information about projects.

To read more about Pekat API visit .

 

Listing all projects

To list all projects you can open http://127.0.0.1:7000/projects/list in your browser or change to the IP of the host. The response is a JSON specifying the status, version, name, port, last open, id, path, and valid version variables.

GUI projects list.png
{ "items": [ { "status": "Running", "version": "3.15.6", "name": "Project 1", "port": 7980, "lastOpen": 1713164784550, "id": "8dcdf6f0-f7de-11ee-8fcd-7978adadfb46", "path": "C:\\Users\\pekat\\PekatVisionProjects\\Project1", "validVersion": true }, { "status": null, "version": "3.16.0", "name": "Project 2", "port": 8000, "lastOpen": 1713195442647, "id": "0d37d110-fb3e-11ee-a2ff-efe346e3cd79", "gpuIndex": 0, "path": "C:\\Users\\pekat\\PekatVisionProjects\\Project 2", "validVersion": false }, ] }

 

Show running project API

To get to a project API page, open http://127.0.0.1:8000/api in your browser or change to the IP of the host. The response is a simple testing API for the currently running project on the port 8000. For more information open .

GUI test api.png