Monolo API Docs
  • Introduction
  • Authorization
    • API Keys Management
    • Signature
    • Code snippets
  • Environments
  • Errors
  • Expired Payment
  • Changelog
  • References
    • Crypto payments
      • ๐Ÿ”’Request crypto payment
      • ๐Ÿ”’Add payment details
      • ๐Ÿ”’Get payment data
      • Fetch deposit amounts metadata
    • Crypto withdrawals
      • Request withdrawal metadata
      • ๐Ÿ”’Request crypto withdrawal
      • ๐Ÿ”’Request crypto withdrawal approval status
    • Wallet Addresses
      • Validate address
    • Businesses
      • ๐Ÿ”’Get business by ID
      • ๐Ÿ”’Get business deposits
      • ๐Ÿ”’Get business withdrawals
      • ๐Ÿ”’Get business balance
    • Callbacks
      • Deposit received notification
      • Withdrawal broadcast notification
      • Withdrawal approved/rejected notification
    • Currencies & Fees
      • Get all currencies
      • Get exchange rates [crypto to fiat]
      • Get exchange rates [fiat to fiat]
      • Get exchange rates [any currency to any currency]
Powered by GitBook
On this page
  1. References
  2. Businesses

Get business balance

PreviousGet business withdrawalsNextCallbacks

Last updated 6 months ago

๐Ÿ”’

Fetch business balance

get

Allows you to fetch the current business balance and allocation ratio of a given business.

Authorizations
Path parameters
businessIdstring ยท uuidRequired

The business ID to search by.

Responses
200
Returns the specified business's balance.
application/json
get
GET /api/v1/balances/{businessId} HTTP/1.1
Host: 
Authorization: YOUR_API_KEY
Accept: */*
200

Returns the specified business's balance.

{
  "businessId": "231cd908-65de-4f88-983e-83ba17102a6c",
  "businessName": "businessName",
  "fiatAllocation": "0.7",
  "settlementFiatCurrency": "EUR",
  "settlementFiatAmount": "10000.55",
  "displayFiatAmount": "12000",
  "cryptoAllocation": "0.3",
  "settlementCryptoCurrency": "USDC",
  "settlementCryptoAmount": "50000.123456",
  "displayCryptoAmount": "55000"
}