QuipteamsREST API

List assets

Assets: Query the company's hardware asset inventory (holding assets).

Endpoint8 params

Parameters

NameTypeDescription
serial_numberstring
Exact match on serial number
item_iduuid
Exact match on asset UUID
countrystring
Filter by country (case-insensitive)
device_typestring
Filter by device type.
searchstring
Search across serial number, description, and employee
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/assets?limit=10`, {
  method: 'GET',
  headers: {
    'Authorization': 'Bearer YOUR_API_KEY',
  },
});

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

Response

json
{
  "data": [
    {
      "id": "asset-uuid-001",
      "serial_number": "C02X9876WXYZ",
      "company": "Acme Corp",
      "country": "United States",
      "device_type": "Laptop",
      "description": "MacBook Pro 14\" M3 Pro",
      "employee": "Jane Smith",
      "condition": "Good",
      "cost": 1450,
      "quantity": 1,
      "completion_date": "2026-02-20T00:00:00.000Z",
      "created_at": "2026-02-15T10:30:00.000Z",
      "updated_at": "2026-02-20T12:00:00.000Z"
    }
  ],
  "meta": {
    "has_more": false,
    "next_cursor": null,
    "total": 1
  }
}