Check if an address is blacklisted.
GET/:network/compliance/is-blacklisted
Check if an address is blacklisted.
Request
Path Parameters
Blockchain network name or chain ID.
Query Parameters
Optional block number for which the balance is requested. Provide only block height or timestamp you want to check for.
Optional Date timestamp for which the balance is requested (ISO 8601 format). Provide only block height or timestamp you want to check for.
Possible values: [USDC
, USDC
]
The type of token (e.g., USDC, USDT).
The address or ENS name of the holder.
The contract address of the token.
The id of your project. Can be found in your Histori dashboard.
Responses
- 200
- 400
Address blacklist status.
- application/json
- Schema
- Example (from schema)
Schema
Name of the blockchain network
Chain ID of the blockchain network
The address being checked.
The token address being checked.
Whether the address is in the list (true/false).
{
"network": "eth-mainnet",
"chain_id": 1,
"holder": "0xa24D38b1B49E32c1c63731810a8D42ec9dd9aa8C",
"token_address": "0xWhitelistAddress2",
"status": true
}
Invalid request parameters.