# getWalletBalance

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /module/getWalletBalance:
    get:
      summary: getWalletBalance
      deprecated: false
      description: >-
        ## Get Wallet Balance


        This method retrieves the current wallet balance (credit) of the agent
        using the provided \`agentKey\`.
      tags:
        - Partner
      parameters:
        - name: agentKey
          in: query
          description: Your Agent KEY
          required: true
          example: AGENTKEY
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                  credit:
                    type: string
                required:
                  - status
                  - credit
                x-apidog-orders:
                  - status
                  - credit
              example:
                status: 'true'
                credit: '145.00'
          headers: {}
          x-apidog-name: getWalletBalance
      security: []
      x-apidog-folder: Partner
      x-apidog-status: released
      x-run-in-apidog: https://app.apidog.com/web/project/545232/apis/api-21625793-run
components:
  schemas: {}
  securitySchemes: {}
servers:
  - url: https://api.whatsiplus.com
    description: WhatsApp API - WhatsiPlus Documentation
security: []

```
