Create Address
POST
/api/v2/analytics/chains/{chain}/addresses/{address}
This endpoint provides multiple functionalities for managing wallet addresses:
✅ Enable wallet address screening using alternative blockchain analytics providers. In this case, scan_for_risk must be set to "true", and provider_name is required. Note: The available blockchain analytics provider may vary depending on your plan and activation settings.
✅ Load a wallet address into the system without screening by setting scan_for_risk to "false". ✅ Associate a wallet address with an existing account by specifying the account_ref_id. ✅ Label a wallet address as a self-hosted wallet by setting is_self_hosted to "true". To use this endpoint, you must provide the wallet address hash and the blockchain network.
bitcoin
, ethereum
, litecoin
, bitcoin-cash
, doge
, solana
, xdc
, ripple
, stellar
, algorand
, polygon
, polkadot
, tezos
, near
.
Path Parameters
chain
string
Blockchain network name. Example: bitcoin
True
address
string
Unique blockchain identifier. Example: 1JjYpRXfPntVEJqAjxsYmvFjjJBdJyaJ2k
True
Request Body
provider_name
string
The name of the risk provider. Examples: RDBIG
, RDCFI
False
is_self_hosted
boolean
Determines whether wallet address is self-hosted. Defaults to "false".
False
scan_for_risk
boolean
Determines whether to scan for risk for the provided wallet address. Defaults to "false".
False
account_ref_id
string
The reference ID of the account to link to address.
False
Response
Last updated