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

# Lista monitorów

> Aktywne monitory użytkownika. Każdy monitor obserwuje jeden identyfikator (NIP, KRS, PESEL lub UUID podmiotu) i powiadamia o nowych zdarzeniach KRZ/MSiG.



## OpenAPI

````yaml /openapi.json get /v1/monitors
openapi: 3.1.0
info:
  title: krdata API
  description: >

    krdata udostępnia dane z polskich rejestrów gospodarczych (KRS, CRBR, KRZ,
    MSiG, biała lista VAT)

    w postaci jednego, spójnego API.


    Uwierzytelnianie odbywa się przez klucz API przekazywany w nagłówku
    `x-api-key`.

    Limity zapytań oraz dzienne pule (PDF, WPV, raporty) wynikają z wybranego
    abonamentu —

    szczegóły zwraca endpoint `GET /v1/usage/summary`.
  version: 0.1.0
servers:
  - url: https://api.krdata.pl
    description: Production
security: []
paths:
  /v1/monitors:
    get:
      tags:
        - Monitors
      summary: Lista monitorów
      description: >-
        Aktywne monitory użytkownika. Każdy monitor obserwuje jeden
        identyfikator (NIP, KRS, PESEL lub UUID podmiotu) i powiadamia o nowych
        zdarzeniach KRZ/MSiG.
      operationId: monitors-list
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/MonitorOut'
                type: array
                title: Response Monitors-List
      security:
        - APIKeyHeader: []
components:
  schemas:
    MonitorOut:
      properties:
        id:
          type: string
          title: Id
        identifier_type:
          type: string
          title: Identifier Type
        identifier_value:
          type: string
          title: Identifier Value
        created_at:
          type: string
          format: date-time
          title: Created At
        last_event_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Last Event At
        event_count:
          type: integer
          title: Event Count
          default: 0
      type: object
      required:
        - id
        - identifier_type
        - identifier_value
        - created_at
      title: MonitorOut
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: x-api-key

````