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

# Get Accounts Distribution

> Get portfolio distribution by accounts with percentages.

Returns:
    Dictionary with account distribution including percentages, values, and breakdown by connectors



## OpenAPI

````yaml /api-reference/openapi.json get /portfolio/accounts-distribution
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:
  /portfolio/accounts-distribution:
    get:
      tags:
        - Portfolio
      summary: Get Accounts Distribution
      description: |-
        Get portfolio distribution by accounts with percentages.

        Returns:
            Dictionary with account distribution including percentages, values, and breakdown by connectors
      operationId: get_accounts_distribution_portfolio_accounts_distribution_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
      security:
        - HTTPBasic: []
components:
  securitySchemes:
    HTTPBasic:
      type: http
      scheme: basic

````