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

# Read a wallet's USDC + EURC balances on the deployment's chain



## OpenAPI

````yaml /api-reference/organizations-openapi.json get /organizations/{orgId}/wallets/{id}/balances
openapi: 3.0.0
info:
  title: Nevermined Organizations API
  description: >-
    Manage a Nevermined organization programmatically — members, tiers, groups &
    budgets, treasury wallets, customers, webhooks, analytics, and
    agent-discovery surfaces.
  version: 1.0.0
  contact: {}
servers:
  - url: https://api.sandbox.nevermined.app/api/v1
    description: Sandbox
  - url: https://api.live.nevermined.app/api/v1
    description: Live
security: []
tags:
  - name: Organizations
    x-group: General
    description: Organization settings, members & roles, and workspace context.
  - name: Organizations - Billing
    x-group: Billing
    description: Tiers, subscriptions, invoices, checkout, and the public tier catalog.
  - name: Groups
    x-group: Groups & Budgets
    description: Organization groups, per-group budgets, and shared payment methods.
  - name: Organizations - Wallets
    x-group: Wallets
    description: Custodial stablecoin treasury wallets.
  - name: Organizations - Customers
    x-group: Customers
    description: The white-label customer CRM (Enterprise).
  - name: Organizations - Analytics
    x-group: Analytics
    description: Revenue, MRR, usage, conversion, and per-member metrics.
  - name: Organizations - Webhooks
    x-group: Webhooks
    description: Outbound webhook subscriptions and deliveries.
  - name: Organizations - Activity
    x-group: Activity
    description: The organization activity feed.
  - name: Organizations - Realtime
    x-group: Realtime
    description: Realtime WebSocket secret management (Enterprise).
  - name: Invitations
    x-group: Invitations
    description: Invite people to an organization.
  - name: Organizations - Integration
    x-group: Agent Discovery
    description: >-
      Public agent-discovery surfaces (llms.txt, agentic-instructions.md,
      ai-catalog.json).
paths:
  /organizations/{orgId}/wallets/{id}/balances:
    get:
      tags:
        - Organizations - Wallets
      summary: Read a wallet's USDC + EURC balances on the deployment's chain
      operationId: OrganizationWalletsController_getBalances
      parameters:
        - name: orgId
          required: true
          in: path
          schema:
            type: string
            example: org-abc123
        - name: id
          required: true
          in: path
          schema:
            example: orw-abc123
            type: string
      responses:
        '200':
          description: 'Envelope `{ success, balances: OrganizationWalletBalancesDto }`'
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OrganizationWalletBalancesResponseDto'
        '404':
          description: Wallet not found
      security:
        - Authorization: []
components:
  schemas:
    OrganizationWalletBalancesResponseDto:
      type: object
      properties:
        success:
          type: boolean
          example: true
        balances:
          $ref: '#/components/schemas/OrganizationWalletBalancesDto'
      required:
        - success
        - balances
    OrganizationWalletBalancesDto:
      type: object
      properties:
        address:
          type: string
          description: The wallet address the balances are read for
          example: 0x…
        chainId:
          type: number
          description: Chain the balances were read on
          example: 84532
        balances:
          type: array
          items:
            $ref: '#/components/schemas/OrganizationWalletTokenBalanceDto'
      required:
        - address
        - chainId
        - balances
    OrganizationWalletTokenBalanceDto:
      type: object
      properties:
        symbol:
          type: string
          enum:
            - USDC
            - EURC
          example: USDC
        decimals:
          type: number
          example: 6
        atomic:
          type: string
          description: Balance in the token’s smallest unit (null if the read failed)
          example: '1500000'
          nullable: true
        formatted:
          type: string
          description: Human-readable balance (null if the read failed)
          example: '1.5'
          nullable: true
      required:
        - symbol
        - decimals
        - atomic
        - formatted
  securitySchemes:
    Authorization:
      scheme: bearer
      bearerFormat: JWT
      type: http

````

## Related topics

- [Organization Wallets](/docs/solutions/organizations/wallets.md)
- [Withdraw stablecoins from an org wallet to a nominated address](/docs/api-reference/organizations--wallets/withdraw-stablecoins-from-an-org-wallet-to-a-nominated-address.md)
- [Core Concepts](/docs/getting-started/core-concepts.md)
- [Stablecoin Payments](/docs/integrate/patterns/stablecoin-payments.md)
- [Read one organization wallet by id](/docs/api-reference/organizations--wallets/read-one-organization-wallet-by-id.md)
