> ## 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 provider connections

> Returns provider connections owned by the authenticated user. API keys are never exposed.



## OpenAPI

````yaml /openapi.yaml get /provider-connections
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:
    get:
      summary: List provider connections
      description: >-
        Returns provider connections owned by the authenticated user. API keys
        are never exposed.
      responses:
        '200':
          description: Connection list
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  properties:
                    id:
                      type: string
                      format: uuid
                    name:
                      type: string
                    provider:
                      type: string
                    api_base_url:
                      type: string
                      nullable: true
                    is_valid:
                      type: boolean
                      nullable: true
                    last_validated_at:
                      type: string
                      format: date-time
                      nullable: true
                    last_validation_error:
                      type: string
                      nullable: true
                    validation_latency_ms:
                      type: integer
                      nullable: true
                    created_at:
                      type: string
                      format: date-time
                    updated_at:
                      type: string
                      format: date-time
        '401':
          description: Not authenticated
        '403':
          description: Requires user role
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````