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

# Get Monitor-Limit Usage

> Returns unique list and hype product workload. Pass enableHypeFor to preview usage before enabling Hyped Automation for a monitor.



## OpenAPI

````yaml GET /monitor/usage
openapi: 3.0.0
info:
  title: Companion API
  version: 2.0.0
  description: Companion API for Blaze Monitors
servers:
  - url: https://api.blazemonitors.com
    description: Production server
security:
  - ApiKeyAuth: []
tags:
  - name: Items
    description: Monitored product management
  - name: Products
    description: Product search and discovery
  - name: Monitor
    description: Site monitoring information
paths:
  /monitor/usage:
    get:
      tags:
        - Monitor
      summary: Get monitor-limit usage
      description: >-
        Returns unique list and hype product workload. Pass enableHypeFor to
        preview usage before enabling Hyped Automation for a monitor.
      parameters:
        - name: serverId
          in: query
          required: true
          schema:
            type: string
        - name: enableHypeFor
          in: query
          required: false
          schema:
            type: string
      responses:
        '200':
          description: Current or prospective monitor usage
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MonitorUsageResponse'
        '400':
          description: Invalid query
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Authentication failed or dashboard server was not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '503':
          description: A required database lookup was unavailable
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    MonitorUsageResponse:
      type: object
      properties:
        totalMonitoredItems:
          type: integer
        totalListItems:
          type: integer
        totalHypedProducts:
          type: integer
        totalHypedSites:
          type: integer
        monitorLimit:
          type: integer
        allowed:
          type: boolean
    ErrorResponse:
      type: object
      properties:
        status:
          type: integer
        message:
          type: string
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-Api-Key
      description: API key for authentication

````