curl --request POST \
--url https://api.blockradar.co/v1/wallets/{id}/rescan/blocks \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"transactionHash": "TRANSACTION_HASH"
}
'{
"message": "Block rescan initiated successfully",
"statusCode": 200
}This endpoint is used to initiate a rescan of blocks for a specific wallet.
| Key | Required | Type | Description |
|---|---|---|---|
| transactionHash | false | string | The blockchain transaction hash |
curl --request POST \
--url https://api.blockradar.co/v1/wallets/{id}/rescan/blocks \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"transactionHash": "TRANSACTION_HASH"
}
'{
"message": "Block rescan initiated successfully",
"statusCode": 200
}