quipteams API
GET/kits
scopekits:readreturns200

List kits

Returns kits for your company with keyset cursor pagination. List rows carry `devices_count` - read a single kit for the devices themselves.

Query parameters

search
stringFilter by kit name.
tag
stringFilter by tag.
region
stringFilter by region.
sort
stringOne of: created_at, updated_at, name. Prefix with `-` for descending. Default `-created_at`. Unknown fields return 400 VALIDATION_ERROR.
limit
numberRows per page. Default 25, max 100.
cursor
stringOpaque keyset cursor - pass `meta.next_cursor` from the previous page.

Example response

json
{
  "data": [
    {
      "id": "7a8b9c0d-1e2f-4304-9516-273849a5b6c7",
      "name": "Engineer Starter Kit",
      "tags": ["engineering", "standard"],
      "region": "AMER",
      "departments": ["Engineering"],
      "devices_count": 2,
      "created_at": "2026-01-05T00:00:00.000Z",
      "updated_at": "2026-01-05T00:00:00.000Z"
    }
  ],
  "meta": { "has_more": false, "next_cursor": null, "total": 1 }
}