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. Wallet Addresses

Validate address

PreviousWallet AddressesNextBusinesses

Last updated 6 months ago

Validate address

get

Check whether a wallet address is valid according to the coin-specific format.

Path parameters
currencystring ยท enumRequired

The currency that this address will be used for.

Possible values:
networkstring ยท enumRequired

The network that the address resides on.

Possible values:
addressstringRequired

The address under validation.

Responses
200
Returns whether the wallet address is valid or not.
application/json
get
GET /api/v1/currency/{currency}/network/{network}/address/{address}/valid HTTP/1.1
Host: 
Accept: */*
200

Returns whether the wallet address is valid or not.

{
  "valid": true,
  "supported": true
}

Validate address and destination tag

get

Check whether a wallet address and a destination tag are valid according to the coin-specific format.

Path parameters
currencystring ยท enumRequired

The currency that this address will be used for.

Possible values:
networkstring ยท enumRequired

The network that the address resides on.

Possible values:
addressstringRequired

The address under validation.

destinationTagstringRequired

The destination address under validation.

Responses
200
Returns whether the wallet address and destination tag are valid or not.
application/json
get
GET /api/v1/currency/{currency}/network/{network}/address/{address}/destinationTag/{destinationTag}/valid HTTP/1.1
Host: 
Accept: */*
200

Returns whether the wallet address and destination tag are valid or not.

{
  "valid": true,
  "supported": true
}
  • GETValidate address
  • GETValidate address and destination tag