系统信息收集器

数据仪表盘

查看系统信息收集统计数据

Windows 系统

0

macOS 系统

0

总收集量

0

系统分布

最近收集数据

ID 系统 浏览器 收集时间

系统信息收集

点击下方按钮开始收集您的系统信息

系统信息

为什么需要收集这些信息?

  • 收集的信息仅用于分析目的,不会用于其他用途

  • 所有数据均经过加密处理,确保您的隐私安全

  • 您可以随时通过API获取您的数据

API 文档

使用我们的 API 获取系统信息数据

API 基础信息

基础 URL:

https://your-domain.com/api/v1

认证方式:

无(公开 API)

获取所有 Windows 系统信息

GET

/systems/windows

返回所有已收集的 Windows 系统信息

响应示例:
[
  {
    "id": 1,
    "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64)...",
    "platform": "Win32",
    "os_version": "Windows 10",
    "browser_name": "Chrome",
    "browser_version": "114.0.0.0",
    "screen_width": 1920,
    "screen_height": 1080,
    "color_depth": 24,
    "available_fonts": ["Arial", "Times New Roman", "Courier New", ...],
    "graphics_card": "NVIDIA GeForce GTX 1080",
    "cpu_cores": 8,
    "memory": 16384,
    "created_at": "2023-06-15T12:34:56Z"
  },
  ...
]

获取所有 macOS 系统信息

GET

/systems/macos

返回所有已收集的 macOS 系统信息

响应示例:
[
  {
    "id": 2,
    "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7)...",
    "platform": "MacIntel",
    "os_version": "macOS 10.15.7",
    "browser_name": "Safari",
    "browser_version": "15.5",
    "screen_width": 2560,
    "screen_height": 1440,
    "color_depth": 32,
    "available_fonts": ["SF Pro Display", "Helvetica Neue", "Arial", ...],
    "graphics_card": "AMD Radeon Pro 5500M",
    "cpu_cores": 8,
    "memory": 16384,
    "created_at": "2023-06-15T13:45:21Z"
  },
  ...
]

获取单个系统信息

GET

/systems/{id}

根据 ID 获取特定系统信息

响应示例:
{
  "id": 1,
  "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64)...",
  "platform": "Win32",
  "os_version": "Windows 10",
  "browser_name": "Chrome",
  "browser_version": "114.0.0.0",
  "screen_width": 1920,
  "screen_height": 1080,
  "color_depth": 24,
  "available_fonts": ["Arial", "Times New Roman", "Courier New", ...],
  "graphics_card": "NVIDIA GeForce GTX 1080",
  "cpu_cores": 8,
  "memory": 16384,
  "created_at": "2023-06-15T12:34:56Z"
}

随机获取系统信息

GET

/systems/random

随机返回一条系统信息

响应示例:
{
  "id": 3,
  "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64)...",
  "platform": "Win32",
  "os_version": "Windows 11",
  "browser_name": "Edge",
  "browser_version": "114.0.1823.43",
  "screen_width": 3840,
  "screen_height": 2160,
  "color_depth": 32,
  "available_fonts": ["Segoe UI", "Arial", "Times New Roman", ...],
  "graphics_card": "AMD Radeon RX 6800 XT",
  "cpu_cores": 12,
  "memory": 32768,
  "created_at": "2023-06-15T14:22:10Z"
}