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

# List MinIO buckets



## OpenAPI

````yaml /openapi.yaml get /storage/buckets
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:
  /storage/buckets:
    get:
      tags:
        - Storage
      summary: List MinIO buckets
      responses:
        '200':
          description: Array of buckets
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  properties:
                    name:
                      type: string
                    created_at:
                      type: string
                      nullable: true
        '401':
          description: Not authenticated
        '403':
          description: Requires admin role
        '502':
          description: Storage service unavailable
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````