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

# Get network health summary

> Returns all monitored namespaces with their overall status (worst-status-wins), component counts, and last event timestamp.



## OpenAPI

````yaml https://sandbox-api.borderless.xyz/v1/api-json get /v1/network-health
openapi: 3.0.0
info:
  title: Borderless API
  description: The Borderless API documentation.
  version: '1.0'
  contact: {}
servers:
  - url: https://sandbox-api.borderless.xyz
security: []
tags: []
paths:
  /v1/network-health:
    get:
      tags:
        - Network Health
      summary: Get network health summary
      description: >-
        Returns all monitored namespaces with their overall status
        (worst-status-wins), component counts, and last event timestamp.
      operationId: NetworkHealthController_getSummary
      parameters: []
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/NetworkHealthSummaryEntity'
      security:
        - bearer: []
components:
  schemas:
    NetworkHealthSummaryEntity:
      type: object
      properties:
        namespace:
          type: string
          description: Namespace identifier
          example: bridge
        overallStatus:
          description: Worst status across all components
          allOf:
            - $ref: '#/components/schemas/ComponentStatus'
        componentsTotal:
          type: number
          description: Total number of monitored components
        componentsOperational:
          type: number
          description: Number of operational components
        lastEventAt:
          format: date-time
          type: string
          description: Timestamp of the last event
      required:
        - namespace
        - overallStatus
        - componentsTotal
        - componentsOperational
    ComponentStatus:
      type: string
      enum:
        - Operational
        - DegradedPerformance
        - PartialOutage
        - MajorOutage
        - UnderMaintenance
      description: Worst status across all components
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http

````