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

# Balances of social smart wallets

> Get balances of all social smart wallets associated with an artist address. Returns ETH and USDC balances for each social smart wallet, along with total balances across all wallets.



## OpenAPI

````yaml GET /smartwallet/balances
openapi: 3.1.0
info:
  title: In•Process API
  description: >-
    The In•Process API enables browsing and managing moments from timelines.
    Retrieve moments from a specific artist's timeline, browse the in•process
    collective timeline, or filter by collection. The API supports creating
    moments, managing collections, handling payments, and interacting with the
    In•Process protocol ecosystem.
  version: 1.0.0
servers:
  - url: https://api.inprocess.world/api
    description: Production server
security: []
paths:
  /smartwallet/balances:
    get:
      summary: Balances of social smart wallets
      description: >-
        Get balances of all social smart wallets associated with an artist
        address. Returns ETH and USDC balances for each social smart wallet,
        along with total balances across all wallets.
      operationId: getSocialSmartWalletBalances
      parameters:
        - name: artist_address
          in: query
          description: The artist wallet address to get balances for
          required: true
          schema:
            type: string
        - name: chainId
          in: query
          description: 'Chain ID of the network (default: Base, 8453)'
          required: false
          schema:
            type: integer
            format: int64
            default: 8453
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SocialSmartWalletBalancesResponse'
              example:
                balances:
                  - social_wallet: '0x1234567890123456789012345678901234567890'
                    smart_wallet: '0xabcdefabcdefabcdefabcdefabcdefabcdefabcd'
                    eth_balance: '0.5'
                    usdc_balance: '100.0'
                total_eth_balance: '0.5'
                total_usdc_balance: '100.0'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security: []
components:
  schemas:
    SocialSmartWalletBalancesResponse:
      type: object
      required:
        - balances
        - total_eth_balance
        - total_usdc_balance
      properties:
        balances:
          type: array
          description: Array of balance information for each social smart wallet
          items:
            $ref: '#/components/schemas/SocialSmartWalletBalance'
        total_eth_balance:
          type: string
          description: Total ETH balance across all social smart wallets
        total_usdc_balance:
          type: string
          description: Total USDC balance across all social smart wallets
    Error:
      type: object
      required:
        - status
        - message
      properties:
        status:
          type: string
          enum:
            - error
          description: Error status
        message:
          type: string
          description: Error message
        errors:
          type: array
          description: >-
            Optional array of field-level validation errors. Typically included
            in 400 Bad Request responses for validation errors.
          items:
            type: object
            required:
              - field
              - message
            properties:
              field:
                type: string
                description: The field name that failed validation
              message:
                type: string
                description: The validation error message for this field
    SocialSmartWalletBalance:
      type: object
      required:
        - social_wallet
        - smart_wallet
        - eth_balance
        - usdc_balance
      properties:
        social_wallet:
          type: string
          description: Address of the social wallet
        smart_wallet:
          type: string
          description: Address of the smart wallet associated with the social wallet
        eth_balance:
          type: string
          description: ETH balance in human-readable token units
        usdc_balance:
          type: string
          description: USDC balance in human-readable token units

````