# List Monitor Checks

`GET /monitor/{monitorId}/checks`

## OpenAPI

````yaml api-reference/v2-openapi.json get /monitor/{monitorId}/checks
openapi: 3.0.0
info:
  title: Firecrawl API
  version: v2
  description: API for interacting with Firecrawl services to perform web scraping
    and crawling tasks.
  contact:
    name: Firecrawl Support
    url: https://firecrawl.dev/support
    email: support@firecrawl.dev
servers:
  - url: https://api.firecrawl.dev/v2
security:
  - bearerAuth: []
paths:
  /monitor/{monitorId}/checks:
    get:
      summary: List monitor checks
      operationId: listMonitorChecks
      tags:
        - Monitoring
      security:
        - bearerAuth: []
      parameters:
        - $ref: "#/components/parameters/MonitorId"
        - name: limit
          in: query
          schema:
            type: integer
            minimum: 1
            maximum: 100
            default: 25
        - name: offset
          in: query
          schema:
            type: integer
            minimum: 0
            default: 0
        - name: status
          in: query
          schema:
            type: string
            enum:
              - queued
              - running
              - completed
              - failed
              - partial
              - skipped_overlap
          description: Filter checks by status.
      responses:
        "200":
          description: Monitor checks
          content:
            application/json:
              schema:
                $ref: "#/components/schemas/MonitorCheckListResponse"
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
  parameters:
    MonitorId:
      name: monitorId
      in: path
      required: true
      schema:
        type: string
        format: uuid
      description: The monitor ID
  schemas:
    MonitorSummary:
      type: object
      properties:
        totalPages:
          type: integer
        same:
          type: integer
        changed:
          type: integer
        new:
          type: integer
        removed:
          type: integer
        error:
          type: integer
    MonitorCheck:
      type: object
      properties:
        id:
          type: string
          format: uuid
        monitorId:
          type: string
          format: uuid
        status:
          type: string
          enum:
            - queued
            - running
            - completed
            - failed
            - partial
            - skipped_overlap
        trigger:
          type: string
          enum:
            - scheduled
            - manual
        scheduledFor:
          type: string
          format: date-time
          nullable: true
        startedAt:
          type: string
          format: date-time
          nullable: true
        finishedAt:
          type: string
          format: date-time
          nullable: true
        estimatedCredits:
          type: integer
          nullable: true
          description: Upper-bound credits reserved for this check before Firecrawl knows
            how many pages changed and require judging.
        reservedCredits:
          type: integer
          nullable: true
        actualCredits:
          type: integer
          nullable: true
          description: Final credits charged for this check after scrapes, crawls, and any
            changed-page judge calls complete.
        billingStatus:
          type: string
        summary:
          $ref: "#/components/schemas/MonitorSummary"
        targetResults:
          type: array
          nullable: true
        notificationStatus:
          type: object
          nullable: true
        error:
          type: string
          nullable: true
        createdAt:
          type: string
          format: date-time
        updatedAt:
          type: string
          format: date-time
    MonitorCheckListResponse:
      type: object
      properties:
        success:
          type: boolean
        data:
          type: array
          items:
            $ref: "#/components/schemas/MonitorCheck"
````
