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

# List Providers



## OpenAPI

````yaml GET /v1/providers
openapi: 3.0.0
info:
  title: Wardin API
  description: AI governance & observability platform — external REST API
  version: '1.0'
  contact: {}
servers: []
security: []
tags: []
paths:
  /v1/providers:
    get:
      tags:
        - providers
      summary: List stored provider credentials (masked)
      operationId: ProvidersController_list
      parameters: []
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ProviderCredentialResponseDto'
      security:
        - bearer: []
components:
  schemas:
    ProviderCredentialResponseDto:
      type: object
      properties:
        provider:
          type: string
          enum:
            - anthropic
            - openai
            - bedrock
            - vertex
        status:
          type: string
          enum:
            - active
            - disabled
        keyHint:
          type: string
          description: Last 4 characters of the primary secret, for display only
          example: '3456'
        updatedAt:
          format: date-time
          type: string
      required:
        - provider
        - status
        - keyHint
        - updatedAt
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http

````