QuipteamsREST API

Get kit details

Products & Kits: Browse the global product catalog and reusable kit templates used when creating quotes.

Endpoint1 params

Parameters

NameTypeDescription
idpathUUID
The kit ID
javascript
const response = await fetch(`https://api.quipteams.com/api/v1/kits/${id}`, {
  method: 'GET',
  headers: {
    'Authorization': 'Bearer YOUR_API_KEY',
  },
});

const { data } = await response.json();
console.log(data);

Response

json
{
  "data": {
    "id": "kit-uuid-001",
    "name": "Engineering Starter Kit",
    "tags": [
      "engineering",
      "new-hire"
    ],
    "region": "North America",
    "departments": [
      "Engineering"
    ],
    "devices": [
      {
        "id": "kd-uuid-001",
        "device_type": "Laptop",
        "specification": {
          "brand": "Apple",
          "model": "MacBook Pro 14\"",
          "cpu": "M3 Pro",
          "ram": "18GB",
          "storage": "512GB SSD",
          "screen_size": "14.2\""
        }
      },
      {
        "id": "kd-uuid-002",
        "device_type": "Monitor",
        "specification": {
          "brand": "Dell",
          "model": "U2723QE",
          "screen_size": "27\"",
          "resolution": "4K"
        }
      },
      {
        "id": "kd-uuid-003",
        "device_type": "Mouse",
        "specification": {
          "brand": "Logitech",
          "model": "MX Master 3S"
        }
      }
    ],
    "created_at": "2026-03-07T10:00:00.000Z",
    "updated_at": "2026-03-07T10:00:00.000Z"
  }
}