Finrax API Documentation
DashboardResourcesMain
  • Introduction
  • Authorization
    • API Keys Management
    • Signature
    • Code snippets
  • Environments
  • Errors
  • Changelog
  • References
    • Crypto payments
      • ๐Ÿ”’Request crypto payment
      • ๐Ÿ”’Add payment details
      • ๐Ÿ”’Get payment data
      • Fetch deposit amounts metadata
    • Crypto withdrawals
      • Request withdrawal metadata
      • ๐Ÿ”“Get crypto withdrawal approval status
      • ๐Ÿ”’Request crypto withdrawal
        • National Identifier Types
        • Name Identifier Type
    • Wallet Addresses
      • Validate address
    • Businesses
      • ๐Ÿ”’Get business payments
      • ๐Ÿ”’Get business withdrawals
      • ๐Ÿ”’Get business balances
    • 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

Was this helpful?

  1. References
  2. Wallet Addresses

Validate address

PreviousWallet AddressesNextBusinesses

Last updated 9 months ago

Was this helpful?

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