Validate

Validate a given address.

get

Returns whether the given address is valid ss58 format, the ss58 prefix if the address has one, the network address format, and what the account ID is for this address.

Path parameters
addressstring · SS58 or HexRequired

SS58 or Hex address of the account.

Responses
200
successfully retrieved address info
application/json
get
GET /accounts/{address}/validate HTTP/1.1
Host: dot-playbook.nownodes.io
Accept: */*
200

successfully retrieved address info

{
  "isValid": true,
  "ss58Prefix": "text",
  "network": "text",
  "accountId": "text"
}