SDK Explorer

Confirms that a specified address is valid for a given token on a certain blockchain.

Parameters
ValidateAddressRequest
object
Required
address
string
Required

Blockchain generated unique identifier, associated with wallet (account), smart contract or other blockchain objects.

blockchain
string
Required

The blockchain network that the resource is to be created on or is currently on.

Allowed valuesETHETH-SEPOLIAAVAXAVAX-FUJIMATICMATIC-AMOYSOLSOL-DEVNETARBARB-SEPOLIANEARNEAR-TESTNETEVMEVM-TESTNETUNIUNI-SEPOLIABASEBASE-SEPOLIAOPOP-SEPOLIA
Responses
Example
1from circle.web3 import developer_controlled_wallets
2from circle.web3 import utils
3
4client = utils.init_developer_controlled_wallets_client(api_key=key, entity_secret=entitySecret)
5
6api_instance = developer_controlled_wallets.TransactionsApi(client)
7
8request = developer_controlled_wallets.ValidateAddressRequest.from_dict({
9    "address": "0xe94ff4f83d7ecb9d9e0bcd59731c1fba4c69c404",
10    "blockchain": "ETH-SEPOLIA",
11})
12response = api_instance.create_validate_address(validate_address_request=request)
13print(response.json())
14
ResponseChoose an example
1{
2  "data": {
3    "is_valid": false
4  }
5}
Did this page help you?
© 2023-2025 Circle Technology Services, LLC. All rights reserved.