Status API Health Check Endpoint: / Function: Health-check root. Method: GET Shell Command: curl -L "http://<ROBOT_IP>:8000/" Python Command: import requests url = "http://<ROBOT_IP>:8000/" resp = requests.get(url) print(resp.json()) Server Status Endpoint: /status Function: Server status. Method: GET Shell Command: curl -L "http://<ROBOT_IP>:8000/status" Python Command: import requests url = "http://<ROBOT_IP>:8000/status" resp = requests.get(url) print(resp.json())