> ## Documentation Index
> Fetch the complete documentation index at: https://developers.papelship.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List Client Computers

> Retrieve device fingerprints, active hardware signatures, suspicious heuristics, and threat assessments.



## OpenAPI

````yaml /api-reference/openapi/qpapel.json get /computers
openapi: 3.0.3
info:
  title: qPapel Protection Web API
  version: 1.0.0
  description: >
    qPapel Protection API provides developer-grade license validation, remote
    software configuration, staff URL delegation, client anti-cheat heuristics,
    and Discord community integration for desktop applications and loaders.
  contact:
    name: PapelShip Developer Support
    url: https://papelship.com
servers:
  - url: https://app.papelship.com/api/qpapel/v1
    description: Production Server
security:
  - BearerAuth: []
  - ApiKeyHeader: []
  - ApiKeyHeaderLegacy: []
tags:
  - name: License Keys
    description: >-
      Programmatic management of customer license keys, hardware ID bindings,
      activations, and bans.
  - name: Reseller Keys
    description: >-
      Multi-seat reseller key creation, extension, duration freeze, and license
      allocation.
  - name: Remote Settings
    description: >-
      Secure remote runtime configuration mapping, build SHA-256 verification,
      and dynamic values.
  - name: Staff Management
    description: Temporary and scope-limited web portal URLs for support moderators.
  - name: Discord Integrations
    description: >-
      Guild linkage, anti-cheat event channel streaming, and role-based bot
      permissions.
  - name: Client Security & Anti-Cheat
    description: >-
      Device fingerprint monitoring, process blacklists, window title filters,
      and server-side protected strings/files.
paths:
  /computers:
    get:
      tags:
        - Client Security & Anti-Cheat
      summary: List Client Computers
      description: >-
        Retrieve device fingerprints, active hardware signatures, suspicious
        heuristics, and threat assessments.
      operationId: listComputers
      parameters:
        - name: search
          in: query
          description: >-
            Search term across CPU ID, machine name, username, IP address, or
            license key.
          schema:
            type: string
        - name: product
          in: query
          description: Filter by product cheat_value.
          schema:
            type: string
        - name: status
          in: query
          description: Filter by status flag.
          schema:
            type: string
            enum:
              - active
              - suspicious
              - banned
        - name: threat_level
          in: query
          description: Filter by computed threat level.
          schema:
            type: string
            enum:
              - clean
              - suspicious
              - critical
        - name: banned
          in: query
          description: Filter by ban status.
          schema:
            type: string
            enum:
              - 'true'
              - 'false'
        - name: page
          in: query
          description: Page index.
          schema:
            type: integer
            default: 1
        - name: limit
          in: query
          description: Page size limit.
          schema:
            type: integer
            default: 20
            maximum: 100
      responses:
        '200':
          description: Paginated computers list.
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: true
                  data:
                    type: object
                    properties:
                      computers:
                        type: array
                        items:
                          $ref: '#/components/schemas/Computer'
                      pagination:
                        $ref: '#/components/schemas/PaginationMeta'
        '401':
          $ref: '#/components/responses/UnauthorizedError'
components:
  schemas:
    Computer:
      type: object
      properties:
        id:
          type: integer
          example: 12
        cpu_id:
          type: string
          example: BFEBFBFF000906E3
        computer_name:
          type: string
          example: DESKTOP-DEV
        username:
          type: string
          example: user123
        ip_address:
          type: string
          example: 192.168.1.50
        product:
          type: string
          example: cs2_cheat
        key_value:
          type: string
          example: ABCD-EFGH-IJKL-USER
        status:
          type: string
          example: suspicious
        threat_level:
          type: string
          example: suspicious
        is_banned:
          type: boolean
          example: false
        ban_reason:
          type: string
          nullable: true
          example: null
        cracker_actions:
          type: string
          nullable: true
          example: Debugger attached detection
        blacklist_detections:
          type: string
          nullable: true
          example: CheatEngine.exe
        created_at:
          type: string
          format: date-time
          example: '2026-06-12T06:00:00.000Z'
        updated_at:
          type: string
          format: date-time
          example: '2026-06-12T06:10:00.000Z'
        product_name:
          type: string
          example: Counter Strike 2 Loader
    PaginationMeta:
      type: object
      properties:
        page:
          type: integer
          example: 1
        limit:
          type: integer
          example: 20
        total:
          type: integer
          example: 1
        totalPages:
          type: integer
          example: 1
    StandardErrorResponse:
      type: object
      properties:
        success:
          type: boolean
          example: false
        error:
          type: string
          example: Invalid parameters provided
  responses:
    UnauthorizedError:
      description: Authentication failed. Missing or invalid developer API key.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/StandardErrorResponse'
          example:
            success: false
            error: Unauthorized access. Valid API key required.
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API_KEY
      description: >-
        Standard HTTP Bearer token authentication header (e.g. `Authorization:
        Bearer pk_live_...`).
    ApiKeyHeader:
      type: apiKey
      in: header
      name: x-api-key
      description: >-
        Custom header API key authentication parameter (`x-api-key:
        pk_live_...`).
    ApiKeyHeaderLegacy:
      type: apiKey
      in: header
      name: api-key
      description: >-
        Legacy custom header API key fallback parameter (`api-key:
        pk_live_...`).

````