Get Started
Set Up Your Project
What the setup skill parses and seeds.
Checklist step
This page is step
set_up_project of the onboarding checklist the product shows you, told API-first.The setup skill reads whatever you can give it about your fleet — a list, a
spreadsheet, a description — and seeds the site: at least one piece of
equipment, one location, one dashboard and one playlist.
Everything it writes is an ordinary object. Nothing is a fixture you have to delete later.
List equipment — GET /api/v1/equipment
curl "https://trydozer.com/api/v1/equipment?status=in_use" \
-H "Authorization: Bearer $DASH_API_KEY" \
-H "Project-ID: pr_northpit"Which machines have not reported in today?data_query {
"collection": "equipment",
"where": {
"status": "in_use"
}
}{
"object": "list",
"data": [
{
"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"
}
],
"has_more": false,
"next_cursor": null
}Next: Upload Your Equipment.