Bitycle Business
  1. Security&Privacy
Bitycle Business
  • Getting started
  • Bitycle Lab
    • introduction
    • Wallet as a Service(WaaS)
      • introduction
      • request Wallet(Temporary)
      • request Wallet(Permanent)
      • inquiry payment
    • Blockchain Indexer
      • introduction
      • Blockchain List
      • Contract Info
      • Get Balances
    • Security&Privacy
      • introduction
      • Check Blocked Wallets
        GET
      • Add to watch list
        POST
      • Get watch list
        GET
      • Delete from watch list
        DELETE
      • Get address label
        GET
    • Node as a Service(NaaS)
      • introduction
    • Tokenization
      • introduction
    • Decentralized Storage(IPFS)
      • introduction
    • Hyperledger Services
      • introduction
  • Bitycle Cap
    • introduction
    • Coins
      • introduction
      • Coin List
      • Coin Info
      • Coin Price
      • coin exchange listings
    • Markets
      • introduction
      • Market Price
      • Markets Price
      • Markets List
      • Market Info
      • market sparklines
    • exchanges
      • introduction
      • CEX Aggregator(Buy&Sell)
        • introduction
        • get tradable markets
        • get tradable markets price
        • send otc order
        • get orders
        • get balances
      • Exchanges List
      • Exchange Info
      • Exchange Coins Listing
      • Exchange Markets Listing
  1. Security&Privacy

Add to watch list

POST
/api/bc/watching_wallet
add the sha256 hash of you addresses (in lowercase) to watch list:
examples:
trx address: TJZPy25g6Yk1iBvA3ACHvSXwMqaWTCAhfa => lowercase => sh256 => 22c7e946646c38f1a49d91b4e43561cb9b8cff1a374866f726de6f232dba8f1f
evm address: 0x1dEA4f059299D2537d3A5C56D0D05B2Eb865f42C => lowercase => sh256 => 81c87f45fcbd25c79aa01cfe72741c10368100d0d0da22b8d4ad327d88281fe1
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://chainhub.bitycle.com/api/bc/watching_wallet' \
--header 'Authorization: Token xxx' \
--header 'Content-Type: application/json' \
--data-raw '[
    {
        "sha256": "29b4ed61dbce947749b95fcc7876bc7e0c70c570ae97ef6cc931664fe626ef5e",
        "network": "tron"
    },
    {
        "sha256": "4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce",
        "network": "tron"
    }
]'
Response Response Example
{
    "code": 0,
    "message": "",
    "data": {}
}

Request

Header Params
Authorization
string 
required
Example:
{{labs_token}}
Body Params application/json
array of:
sha256
string 
required
network
string 
optional
network is not required
Examples

Responses

🟢200Success
application/json
Body
code
integer 
required
message
string 
required
data
object 
required
Modified at 2025-07-15 07:19:20
Previous
Check Blocked Wallets
Next
Get watch list
Built with