Validate crypto address

Endpoint that validates a crypto address (and destination tag, for addresses that require one)

SecuritybearerAuth
Request
header Parameters
bp-user-id
required
string <uuid>
Example: 12312312-2be6-4522-977e-ea4d92c45e86
Request Body schema: application/json

The withdrawal offer

address
required
string

The crypto address to be validated

coin_network_id
required
string <uuid>

The coin network ID

destination_tag
string or null

Blockchain destination tag

destination_tag_type
string or null

Blockchain destination tag type

Enum: "memo_id" "memo_text"
Responses
200

Success Response

401

Unauthorized

403

Forbidden

422

Validation Error

500

Internal Error

503

Service unavailable

post/v1/crypto-transfers/addresses/validate
Request samples
application/json
{
  • "address": "bc1qzlc64j5aepmmqxv4yl8cdwnwx7ahtqaew3egxk",
  • "coin_network_id": "1ede43b2-6f0d-6392-be44-4d7a070c78a7",
  • "destination_tag": "123845678",
  • "destination_tag_type": "memo_id"
}
Response samples
application/json
{
  • "data": {
    }
}