Introduction
What Dozer is
Dozer runs equipment operations: connect machines and cameras, watch live telemetry, and put your site on every screen.
Dozer runs equipment operations — the machines, the devices that report on them, and the screens that show the result.
Register a machine, connect the CAN logger or camera that reports on it, and the same objects feed a mechanic's dashboard and an unattended TV. Anything you can do from the dashboard, an agent can do too — same objects, same gates, and the gates sit on the object rather than the door, so an agent can never grant itself authority (Control Plane).
Get started
- Set up your project — the six-step checklist the product shows you, told API-first.
- Build with AI — let the onboarding skill fill a whole site from a description.
- API Quickstart — authenticate and make your first call.
Register a machine
Create a equipment — POST /api/v1/equipment
curl -X POST "https://trydozer.com/api/v1/equipment" \
-H "Authorization: Bearer $DASH_API_KEY" \
-H "Project-ID: pr_northpit" \
-H "Content-Type: application/json" \
-d '{"unit_number":"EXC-347","name":"Komatsu PC490","type":"excavator","status":"available","location":"North Pit","make":"Komatsu","model":"PC490","year":2021,"engine_hours":6240}'Add excavator EXC-347 at the North Pitdata_set {
"collection": "equipment",
"object_id": "a60h-12",
"data": {
"unit_number": "EXC-347",
"name": "Komatsu PC490",
"type": "excavator",
"status": "available",
"location": "North Pit",
"make": "Komatsu",
"model": "PC490",
"year": 2021,
"engine_hours": 6240
}
}{
"object": "equipment",
"id": "obj_123",
"unit_number": "EXC-347",
"name": "Komatsu PC490",
"type": "excavator",
"status": "in_use",
"status_color": "status color",
"status_reported_at": "2026-07-25T12:00:00.000Z",
"state": "state",
"observation": "observation",
"timeline_changes": "timeline changes",
"metrics": {},
"engine_hours": 6248,
"live_status": "running",
"created_at": "2026-07-25T12:00:00.000Z",
"updated_at": "2026-07-25T12:00:00.000Z"
}Pick your path
- Chat — ask Dozer directly.
- MCP — point your own agent at Dozer's tools: Connect Your Agent.
- API — every resource, with cURL · AI Prompt · MCP, is in the resource reference.