Spiceworks · Example Payload

Spiceworks Get Device Example

CommunityEnterprise ITIT Management

Spiceworks Get Device Example is an example object payload from Spiceworks, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "GET",
    "url": "https://community.spiceworks.com/api/v1/devices/156",
    "headers": {
      "Authorization": "Bearer {oauth_token}",
      "Accept": "application/json"
    }
  },
  "response": {
    "status": 200,
    "headers": {
      "Content-Type": "application/json"
    },
    "body": {
      "device": {
        "id": 156,
        "name": "DESKTOP-MKTG-04",
        "type": "workstation",
        "manufacturer": "Dell",
        "model": "OptiPlex 7090",
        "serial_number": "DL7090X3482",
        "ip_address": "192.168.1.56",
        "mac_address": "3C:EC:EF:AB:12:34",
        "os_name": "Microsoft Windows 11 Pro",
        "os_version": "10.0.22621",
        "cpu": "Intel Core i7-11700 @ 2.50GHz",
        "ram_mb": 16384,
        "disk_gb": 512.0,
        "last_seen_at": "2026-05-02T08:22:00Z",
        "warranty_expiry": "2027-03-15",
        "software": [
          { "name": "Microsoft Office 365", "version": "16.0.17531" },
          { "name": "Google Chrome", "version": "124.0.6367.62" },
          { "name": "Zoom", "version": "5.17.11" },
          { "name": "Slack", "version": "4.38.125" }
        ]
      }
    }
  }
}