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

# List Healthchecks

> Return the registry of healthchecks ChainPatrol exposes today, including planned checks that are not yet implemented on the backend. Clients should iterate this list and only call endpoints where `implemented` is true.

## Overview

Return the registry of healthchecks ChainPatrol exposes today, including planned checks
that are not yet implemented on the backend. Iterate this list and only call endpoints
where `implemented` is true.

<Info>
  Every healthcheck returns the same uniform result shape, so you can call them in a loop
  and grade the responses with shared code.
</Info>


## OpenAPI

````yaml POST /healthchecks/list
openapi: 3.0.3
info:
  title: ChainPatrol External API - OpenAPI 3.0
  description: ChainPatrol External API documentation
  version: 2.0.0
servers:
  - url: https://app.chainpatrol.io/api/v2
security: []
tags:
  - name: asset
  - name: report
externalDocs:
  url: https://chainpatrol.com/docs
paths:
  /healthchecks/list:
    post:
      tags:
        - healthchecks
      summary: List available healthchecks
      description: >-
        Return the registry of healthchecks ChainPatrol exposes today, including
        planned checks that are not yet implemented on the backend. Clients
        should iterate this list and only call endpoints where `implemented` is
        true.
      operationId: healthchecksList
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  checks:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                        title:
                          type: string
                        description:
                          type: string
                        category:
                          type: string
                          enum:
                            - detection
                            - reviewing
                            - blocklisting
                            - takedowns
                            - assets
                            - organization
                        implemented:
                          type: boolean
                        endpoint:
                          type: string
                          nullable: true
                        defaultThreshold:
                          type: object
                          additionalProperties:
                            anyOf:
                              - type: number
                              - type: string
                        notImplementedReason:
                          type: string
                      required:
                        - id
                        - title
                        - description
                        - category
                        - implemented
                        - endpoint
                required:
                  - checks
        '400':
          description: Invalid input data
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/error.BAD_REQUEST'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/error.INTERNAL_SERVER_ERROR'
components:
  schemas:
    error.BAD_REQUEST:
      type: object
      properties:
        message:
          type: string
          description: The error message
          example: Invalid input data
        code:
          type: string
          description: The error code
          example: BAD_REQUEST
        issues:
          type: array
          items:
            type: object
            properties:
              message:
                type: string
            required:
              - message
          description: An array of issues that were responsible for the error
          example: []
      required:
        - message
        - code
      title: Invalid input data error (400)
      description: The error information
      example:
        code: BAD_REQUEST
        message: Invalid input data
        issues: []
    error.INTERNAL_SERVER_ERROR:
      type: object
      properties:
        message:
          type: string
          description: The error message
          example: Internal server error
        code:
          type: string
          description: The error code
          example: INTERNAL_SERVER_ERROR
        issues:
          type: array
          items:
            type: object
            properties:
              message:
                type: string
            required:
              - message
          description: An array of issues that were responsible for the error
          example: []
      required:
        - message
        - code
      title: Internal server error error (500)
      description: The error information
      example:
        code: INTERNAL_SERVER_ERROR
        message: Internal server error
        issues: []

````