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

# List Account Credentials

> Get a list of all connectors that have credentials configured for a specific account.

Args:
    account_name: Name of the account to list credentials for

Returns:
    List of connector names that have credentials configured

Raises:
    HTTPException: 404 if account not found



## OpenAPI

````yaml /api-reference/openapi.json get /accounts/{account_name}/credentials
openapi: 3.1.0
info:
  title: Hummingbot API
  description: API for managing Hummingbot trading instances
  version: 1.0.1
servers:
  - url: http://localhost:8000
    description: Local development server
security: []
paths:
  /accounts/{account_name}/credentials:
    get:
      tags:
        - Accounts
      summary: List Account Credentials
      description: >-
        Get a list of all connectors that have credentials configured for a
        specific account.


        Args:
            account_name: Name of the account to list credentials for

        Returns:
            List of connector names that have credentials configured

        Raises:
            HTTPException: 404 if account not found
      operationId: list_account_credentials_accounts__account_name__credentials_get
      parameters:
        - name: account_name
          in: path
          required: true
          schema:
            type: string
            title: Account Name
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  type: string
                title: >-
                  Response List Account Credentials Accounts  Account Name 
                  Credentials Get
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBasic: []
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBasic:
      type: http
      scheme: basic

````