QuipteamsREST API

List kits

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

Endpoint6 params

Parameters

NameTypeDescription
searchstring
Search kits by name (case-insensitive)
tagstring
Filter by tag (returns kits that include this tag)
regionstring
Filter by region (exact match)
sortstring
Sort field. Prefix with - for descending (default: "-created_at").
limitinteger
Items per page, 1-100 (default: 25)
cursorstring
Pagination cursor from a previous response
javascript
const response = await fetch(`https://api.quipteams.com/api/v1/kits?limit=10`, {
  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_count": 3,
      "created_at": "2026-03-01T10:00:00.000Z",
      "updated_at": "2026-03-01T10:00:00.000Z"
    }
  ],
  "meta": {
    "has_more": false,
    "next_cursor": null,
    "total": 1
  }
}