Validate address
Check whether a wallet address is valid according to the coin-specific format.
Path parameters
currencystring Β· enumRequiredPossible values:
The currency that this address will be used for.
networkstring Β· enumRequiredPossible values:
The network that the address resides on.
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
}
Check whether a wallet address and a destination tag are valid according to the coin-specific format.
Path parameters
currencystring Β· enumRequiredPossible values:
The currency that this address will be used for.
networkstring Β· enumRequiredPossible values:
The network that the address resides on.
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
}
Last updated
Was this helpful?