Skip to main content
GET
/
v1
/
equipment
/
robots
List all robots
curl --request GET \
  --url http://localhost:3000/v1/equipment/robots
{
  "robots": [
    {
      "id": "011000001000020053",
      "display_id": "R-0001",
      "label": "Robot R-0001",
      "name": "Delivery Bot 1",
      "status": "idle",
      "is_active": true,
      "has_tote": true,
      "active_tote_id": "<string>"
    }
  ],
  "stats": {
    "total": 123,
    "online": 123,
    "offline": 123,
    "idle": 123,
    "delivering": 123,
    "charging": 123,
    "error": 123
  }
}

Query Parameters

status
enum<string>

Filter by status

Available options:
idle,
delivering,
charging,
error
is_active
string

Filter by active state (true/false)

Response

List of robots with stats

robots
object[]
required
stats
object
required