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

# Get EURC balance for an app

> Retrieves the total EURC balance across all wallets for the specified app.
    
This endpoint aggregates EURC balances from all associated wallets and provides:
- Total EURC balance across all chains and wallets
- Detailed breakdown by individual wallet and blockchain network
- Contract addresses and wallet identifiers for each balance

## Use Cases
- Dashboard balance display
- European market operations
- Euro-denominated financial reporting
- Cross-currency balance tracking

## Response Format
The response includes both the aggregated total and detailed breakdown, enabling
comprehensive euro stablecoin balance management.



## OpenAPI

````yaml /swagger.yml get /api/v0/balance/eurc
openapi: 3.0.0
info:
  title: Devdraft AI Payment & Business Management API
  description: >-

    A comprehensive payment processing and business management API that enables
    seamless integration of cryptocurrency and traditional payment methods.
        
  version: 1.0.0
  contact: {}
servers:
  - url: https://api.devdraft.ai
    description: Production Server
security: []
tags: []
paths:
  /api/v0/balance/eurc:
    get:
      tags:
        - App Balances
      summary: Get EURC balance for an app
      description: >-
        Retrieves the total EURC balance across all wallets for the specified
        app.
            
        This endpoint aggregates EURC balances from all associated wallets and
        provides:

        - Total EURC balance across all chains and wallets

        - Detailed breakdown by individual wallet and blockchain network

        - Contract addresses and wallet identifiers for each balance


        ## Use Cases

        - Dashboard balance display

        - European market operations

        - Euro-denominated financial reporting

        - Cross-currency balance tracking


        ## Response Format

        The response includes both the aggregated total and detailed breakdown,
        enabling

        comprehensive euro stablecoin balance management.
      operationId: BalanceController_getEURCBalance
      parameters: []
      responses:
        '200':
          description: EURC balance retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AggregatedBalanceResponse'
        '401':
          description: Unauthorized - Invalid or missing API credentials
        '404':
          description: App not found or no access permission
        '500':
          description: Internal server error
      security:
        - x-client-secret: []
        - x-client-key: []
components:
  schemas:
    AggregatedBalanceResponse:
      type: object
      properties:
        currency:
          type: string
          description: The stablecoin currency
          enum:
            - usdc
            - eurc
          example: usdc
        total_balance:
          type: string
          description: The total aggregated balance across all wallets and chains
          example: '5678.90'
        balances:
          description: Detailed breakdown of balances by wallet and chain
          items:
            type: object
          type: array
      required:
        - currency
        - total_balance
        - balances
  securitySchemes:
    x-client-secret:
      type: apiKey
      in: header
      name: x-client-secret
      description: >-
        Your secret API key. Keep this secure and never expose it in client-side
        code.
    x-client-key:
      type: apiKey
      in: header
      name: x-client-key
      description: Your unique client API key. Obtain this from your Devdraft AI dashboard.

````