# 健康检查

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /v1/instance/health:
    post:
      summary: 健康检查
      deprecated: false
      description: |-
        【注意】该接口走正常验签流程
        连接测试/心跳监测请用这个接口，能正常返回json结构(200)，就是正常
      tags:
        - 接口列表/运维接口
      parameters: []
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: integer
                    description: 状态码
                  msg:
                    type: string
                    description: 信息
                  data:
                    type: object
                    properties: {}
                    x-apifox-orders: []
                    description: 数据
                required:
                  - code
                  - msg
                  - data
                x-apifox-orders:
                  - code
                  - msg
                  - data
          headers: {}
          x-apifox-name: 成功
      security: []
      x-apifox-folder: 接口列表/运维接口
      x-apifox-status: released
      x-run-in-apifox: https://app.apifox.com/web/project/5657281/apis/api-277932309-run
components:
  schemas: {}
  securitySchemes: {}
servers: []
security: []

```
