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

# Check Account Balance

> Quickly retrieve the account balance for your specified service. Use this endpoint to stay updated on your available funds for transactions.



## OpenAPI

````yaml post /get_account_balance
openapi: 3.0.0
info:
  title: TheBridge Developer API
  description: >-
    Welcome to TheBridge Developer API! This powerful interface allows you to
    seamlessly integrate our fintech solutions into your applications. With our
    API, you can process bank and mobile money transactions, check account
    balances, and simulate callbacks for testing. Get ready to revolutionize
    your financial operations with our secure and efficient API.
  version: 1.0.0
servers:
  - url: https://{api_host}
    variables:
      api_host:
        default: api.thebridgesolutions.com
security:
  - basicAuth: []
paths:
  /get_account_balance:
    post:
      summary: Check Account Balance
      description: >-
        Quickly retrieve the account balance for your specified service. Use
        this endpoint to stay updated on your available funds for transactions.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                service_id:
                  type: integer
                  description: >-
                    Your unique service identifier. This is the same ID you use
                    for payment transactions.
                request_time:
                  type: string
                  format: date-time
                  description: >-
                    The timestamp of your balance check request. Use ISO 8601
                    format (e.g., '2023-04-21T14:30:00Z').
      responses:
        '200':
          description: >-
            Account balance retrieved successfully. The response includes your
            current balance and any relevant account information.
          content:
            application/json:
              schema:
                type: object
                properties:
                  response_message:
                    type: string
                    description: >-
                      A message containing your current account balance and any
                      additional account information.
                  response_code:
                    type: string
                    description: >-
                      A code indicating the success of the balance retrieval.
                      Refer to our response code documentation for details.
components:
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic

````