> ## 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.

# Vault seal status

> Returns vault health status. Degrades gracefully if vault is unreachable. Admin only.




## OpenAPI

````yaml /openapi.yaml get /admin/secrets/status
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:
  /admin/secrets/status:
    get:
      summary: Vault seal status
      description: >
        Returns vault health status. Degrades gracefully if vault is
        unreachable. Admin only.
      responses:
        '200':
          description: Vault status
          content:
            application/json:
              schema:
                type: object
                properties:
                  available:
                    type: boolean
                  sealed:
                    type: boolean
                    nullable: true
                  initialized:
                    type: boolean
                    nullable: true
                  version:
                    type: string
                    nullable: true
                  cluster_name:
                    type: string
                    nullable: true
        '401':
          description: Not authenticated
        '403':
          description: Requires admin role
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````