List kits
Products & Kits: Browse the global product catalog and reusable kit templates used when creating quotes.
Endpoint6 params
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
search | string | no | Search kits by name (case-insensitive) |
tag | string | no | Filter by tag (returns kits that include this tag) |
region | string | no | Filter by region (exact match) |
sort | string | no | Sort field. Prefix with - for descending (default: "-created_at"). |
limit | integer | no | Items per page, 1-100 (default: 25) |
cursor | string | no | 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
}
}