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

# Connection health stats

> Returns aggregate health statistics for the authenticated user's provider connections, including overall counts and per-provider breakdown with average latency.




## OpenAPI

````yaml /openapi.yaml get /provider-connections/health
openapi: 3.0.3
info:
  title: Hill90 API
  description: Hill90 platform API — agent management and lifecycle operations.
  version: 0.1.0
servers:
  - url: /
    description: Relative (behind Traefik reverse proxy)
security: []
paths:
  /provider-connections/health:
    get:
      summary: Connection health stats
      description: >
        Returns aggregate health statistics for the authenticated user's
        provider connections, including overall counts and per-provider
        breakdown with average latency.
      responses:
        '200':
          description: Health statistics
          content:
            application/json:
              schema:
                type: object
                properties:
                  total:
                    type: integer
                  valid:
                    type: integer
                  invalid:
                    type: integer
                  untested:
                    type: integer
                  avg_latency_ms:
                    type: integer
                    nullable: true
                  by_provider:
                    type: array
                    items:
                      type: object
                      properties:
                        provider:
                          type: string
                        total:
                          type: integer
                        valid:
                          type: integer
                        invalid:
                          type: integer
                        untested:
                          type: integer
                        avg_latency_ms:
                          type: integer
                          nullable: true
        '401':
          description: Not authenticated
        '403':
          description: Requires user role
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````