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

# Get balances

> Returns a unified balance snapshot grouped by venue. Each venue includes the address used for funding or settlement when available. Venue `value` fields are USD valuations. Venue `available` fields are exact USDC 6-decimal base-unit strings.



## OpenAPI

````yaml GET /v1/balances
openapi: 3.1.0
info:
  title: Docent API
  description: >-
    REST API for programmatic trading on Hyperliquid and Polymarket via Docent.
    Create API agents, fund a dedicated wallet, place trades, check balances,
    and move funds between venues with API keys.
  version: 1.0.0
  contact:
    email: support@trydocent.com
servers:
  - url: https://api.trydocent.com
    description: Production
security:
  - bearerAuth: []
tags:
  - name: Auth
    description: Registration, key management, and auth status
  - name: Balances
    description: Unified balance across all trading venues
  - name: Positions
    description: Open positions on Hyperliquid and Polymarket
  - name: Markets
    description: Market metadata and search
  - name: Orders
    description: Place orders on Hyperliquid perpetuals, spot, and Polymarket
  - name: Transfers
    description: Move funds between trading venues
  - name: Actions
    description: Poll workflow execution status
  - name: Strategies
    description: Coming soon. Reserved for future strategy endpoints.
paths:
  /v1/balances:
    get:
      tags:
        - Balances
      summary: Get balances
      description: >-
        Returns a unified balance snapshot grouped by venue. Each venue includes
        the address used for funding or settlement when available. Venue `value`
        fields are USD valuations. Venue `available` fields are exact USDC
        6-decimal base-unit strings.
      responses:
        '200':
          description: Unified balance snapshot
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BalancesResponse'
components:
  schemas:
    BalancesResponse:
      type: object
      required:
        - balances
      properties:
        balances:
          $ref: '#/components/schemas/UnifiedBalance'
    UnifiedBalance:
      type: object
      required:
        - evm
        - hyperliquid
        - polymarket
        - totals
      properties:
        evm:
          $ref: '#/components/schemas/VenueBalance'
        hyperliquid:
          $ref: '#/components/schemas/VenueBalance'
        polymarket:
          $ref: '#/components/schemas/VenueBalance'
        totals:
          type: object
          required:
            - value
            - cash
          properties:
            value:
              type: number
              description: Total portfolio value across all venues in USD
            cash:
              type: number
              description: Liquid cash across EVM, Hyperliquid, and Polymarket in USD
    VenueBalance:
      type: object
      required:
        - address
        - value
        - available
      properties:
        address:
          type: string
          nullable: true
          description: >-
            Venue address used for funding or settlement. `null` when the venue
            is not provisioned yet.
        value:
          type: number
          description: Venue valuation in USD
        available:
          type: string
          description: Available USDC as an exact 6-decimal base-unit string
          example: '1250000'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        API key in the format `dk_live_...`. Pass as `Authorization: Bearer
        dk_live_...`

````