> ## 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 All Available Sites

> Get information about all available monitoring sites



## OpenAPI

````yaml GET /monitor/sites
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/sites:
    get:
      tags:
        - Monitor
      summary: Get All Available Sites
      description: Get information about all available monitoring sites
      responses:
        '200':
          description: List of all available sites
          content:
            application/json:
              schema:
                type: object
                additionalProperties:
                  type: array
                  items:
                    $ref: '#/components/schemas/Site'
              example:
                amazon:
                  - platformName: amazon
                    siteName: AmazonUS
                    siteUrl: https://amazon.com
                    siteCurrency: USD
                    siteImg: >-
                      https://drive.google.com/uc?id=1AoYw0yB47Kh8RQFXDDBUKRIhH1U3bxVC
                    hasLists: true
                    hasProducts: true
                    hasReleases: false
                    hasForceAdd: true
                    queryType: productSku
                    restockTypes:
                      - Restock
                    altNames:
                      - amazon
                      - amz
                      - amzus
components:
  schemas:
    Site:
      type: object
      properties:
        platformName:
          type: string
          example: amazon
        siteName:
          type: string
          example: AmazonUS
        siteUrl:
          type: string
          example: https://amazon.com
        siteCurrency:
          type: string
          example: USD
        siteImg:
          type: string
          example: https://drive.google.com/uc?id=1AoYw0yB47Kh8RQFXDDBUKRIhH1U3bxVC
        hasLists:
          type: boolean
          example: true
        hasProducts:
          type: boolean
          example: true
        hasReleases:
          type: boolean
          example: false
        hasForceAdd:
          type: boolean
          example: true
        queryType:
          type: string
          example: productSku
        restockTypes:
          type: array
          items:
            type: string
          example:
            - Restock
        altNames:
          type: array
          items:
            type: string
          example:
            - amazon
            - amz
            - amzus
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-Api-Key
      description: API key for authentication

````