/kits/{id}Get a kit
Returns a single kit with its devices. Each device carries a sparse `specification` object (camelCase keys - only set values appear). An id belonging to another company responds 404.
Example response
json
{
"data": {
"id": "7a8b9c0d-1e2f-4304-9516-273849a5b6c7",
"name": "Engineer Starter Kit",
"tags": ["engineering", "standard"],
"region": "AMER",
"departments": ["Engineering"],
"devices": [
{
"id": "0d1e2f30-4152-4637-a8b9-c0d1e2f30415",
"device_type": "Laptop",
"specification": {
"model": "MacBook Pro 14",
"company": "Apple",
"cpu": "M5 Pro",
"ram": "18GB",
"storage": "512GB",
"screenSize": "14"
}
}
],
"created_at": "2026-01-05T00:00:00.000Z",
"updated_at": "2026-01-05T00:00:00.000Z"
}
}