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

# Get monitor change logs



## OpenAPI

````yaml get /v2/monitors/{id}/logs
openapi: 3.0.0
info:
  title: Topograph
  description: The Topograph API
  version: '0.1'
  contact: {}
servers:
  - url: https://api.topograph.co
security:
  - x-api-key: []
tags: []
paths:
  /v2/monitors/{id}/logs:
    get:
      tags:
        - Monitors
      summary: Get monitor change logs
      operationId: MonitoringController_getMonitorLogs_v2
      parameters:
        - name: id
          required: true
          in: path
          description: Monitor ID
          schema:
            type: string
        - name: first
          required: false
          in: query
          description: 'Number of items to fetch (default: 25)'
          schema:
            type: number
        - name: after
          required: false
          in: query
          description: Cursor for pagination
          schema:
            type: string
      responses:
        '200':
          description: Monitor change logs
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MonitorLogsResponseDto'
        '401':
          description: Invalid or missing API key
        '404':
          description: Monitor not found or access denied
      security:
        - x-api-key: []
components:
  schemas:
    MonitorLogsResponseDto:
      type: object
      properties:
        logs:
          description: List of monitor log entries
          type: array
          items:
            $ref: '#/components/schemas/MonitorLogDto'
        hasNextPage:
          type: boolean
          description: Whether there is a next page available
          example: true
        nextCursor:
          type: string
          description: Cursor for the next page
          example: cmfzlu1dt000j12ldeqrfszq0
      required:
        - logs
        - hasNextPage
    MonitorLogDto:
      type: object
      properties:
        id:
          type: string
          description: The unique identifier for the log entry
          example: cmfzlu1dt000j12ldeqrfszq0
        changeDetected:
          type: boolean
          description: Whether a change was detected in this check
          example: true
        changeCategories:
          description: Categories of detected changes
          example:
            - status
            - address
          type: array
          items:
            type: string
        fetchStatus:
          type: string
          description: Status of the fetch operation
          example: success
          enum:
            - success
            - not_found
            - error
            - error_final
        errorMessage:
          type: string
          description: Error message if the fetch failed
          example: null
          nullable: true
        createdAt:
          type: string
          description: When this log entry was created
          example: '2026-03-20T02:00:00.000Z'
      required:
        - id
        - changeDetected
        - changeCategories
        - fetchStatus
        - createdAt
  securitySchemes:
    x-api-key:
      type: apiKey
      in: header
      name: x-api-key

````