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

# Get Payout Balances

> Retrieve available payout balances for a user, grouped by currency.



## OpenAPI

````yaml /api-reference/openapi.json get /payment/api/v1/payout/balances/{user_id}
openapi: 3.0.0
info:
  title: Carbn Connect API
  version: 1.0.0
  description: >-
    API documentation for Carbn Connect services including user onboarding, KYC,
    wallet management, and transfers.
servers:
  - url: https://api.carbnconnect.com
    description: Production server
security:
  - ApiKeyAuth: []
paths:
  /payment/api/v1/payout/balances/{user_id}:
    get:
      tags:
        - Payouts
      summary: Get Payout Balances
      description: Retrieve available payout balances for a user, grouped by currency.
      operationId: getPayoutBalancesByUser
      parameters:
        - name: user_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
          example: 9973efd0-410c-4b1a-991c-5a00f1581734
          description: Unique identifier of the user
      responses:
        '200':
          description: Payout balances retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PayoutBalancesResponse'
        '400':
          description: Invalid request
        '401':
          description: Unauthorized - API key is missing or invalid
        '404':
          description: User not found
      security:
        - ApiKeyAuth: []
components:
  schemas:
    PayoutBalancesResponse:
      type: object
      properties:
        balances:
          type: array
          items:
            type: object
            properties:
              currency:
                type: string
                example: PHP
                description: Currency code (ISO 4217)
              amount:
                type: string
                example: '506.54'
                description: Available payout balance in this currency
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: API key for authentication. Must be included in the x-api-key header.

````