Skip to content

Status API

Health Check

  • Endpoint: /
  • Function: Health-check root.
  • Method: GET
  • Shell Command:
curl -L "http://<ROBOT_IP>/wizard/"
  • Python Command:
import requests

url = "http://<ROBOT_IP>/wizard/"
resp = requests.get(url)
print(resp.json())

Server Status

  • Endpoint: /status
  • Function: Server status.
  • Method: GET
  • Shell Command:
curl -L "http://<ROBOT_IP>/wizard/status"
  • Python Command:
import requests

url = "http://<ROBOT_IP>/wizard/status"
resp = requests.get(url)
print(resp.json())