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 by ID

PreviousBusinessesNextGet business deposits

Last updated 6 months ago

๐Ÿ”’

Fetch business by ID

get

Fetch business by ID. You can locate the BusinessID in your organisation account. Click on Businesses > Expand Business > Top left corner.

Authorizations
Path parameters
businessIdstring ยท uuidRequired

The business ID to search by.

Responses
200
Returns the business with the specified ID.
application/json
404
Business with the specified ID doesn't exist.
application/json
get
GET /api/v1/businesses/{businessId} HTTP/1.1
Host: 
Authorization: YOUR_API_KEY
Accept: */*
{
  "id": "c95fc88b-5aba-4fec-a4df-c6834f304464",
  "name": "Test Business",
  "depositReceivedCallbackUrl": "https://example.com/test",
  "depositExchangedCallbackUrl": "https://example.com/test",
  "withdrawalCallbackUrl": "https://example.com/test",
  "theme": "LIGHT",
  "supportedDepositCurrencies": [
    "XRP",
    "BTC",
    "ETH",
    "XLM",
    "LTC",
    "BCH"
  ],
  "supportedDepositCurrenciesWithNetworks": {
    "XRP": [
      "XRP"
    ],
    "BTC": [
      "BTC"
    ],
    "ETH": [
      "ETH",
      "BSC"
    ],
    "XLM": [
      "XLM"
    ],
    "LTC": [
      "LTC"
    ],
    "BCH": [
      "BCH"
    ]
  },
  "supportedDisplayCurrencies": [
    "EUR",
    "USD",
    "TRY"
  ],
  "settlementCryptoRatio": "0.25",
  "settlementCryptoCurrency": "USDC",
  "settlementFiatCurrency": "EUR",
  "overpaymentPolicy": "EXCESS_REFUND",
  "refundFollowUpDepositsForOneTimePayments": true,
  "userServiceFeeDistributionPercentage": "0.00",
  "createdAt": 1692879143
}