Validating addresses

POST /api/public/v1/addresses/validate

This endpoint validates wallet addresses.

Make sure to supply application/json in the Content-Type header.

Headers

NameValue

Content-Type

application/json

Authorization

Bearer <api_key>

Request Body

NameTypeRequiredDescription

address

string

Yes

Recipient wallet address.

network

string

Yes

Network code. Refer to Supported Currencies.

Response

{
  "data": {},
  "status": "ok",
  "jsonapi": {
    "version": "1.0"
  }
}

// Address format is valid.

Last updated