Validate address

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
}

Last updated

Was this helpful?