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

Get watch list

GET
/api/bc/watching_wallet
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://chainhub.bitycle.com/api/bc/watching_wallet?per_page=20&page=5' \
--header 'Authorization: Token xxx'
Response Response Example
{
    "code": 0,
    "message": "",
    "data": [
        {
            "id": 888102,
            "network": "tron",
            "sha256": "29b4ed61dbce947749b95fcc7876bc7e0c70c570ae97ef6cc931664fe626ef5e"
        },
        {
            "id": 888104,
            "network": "tron",
            "sha256": "4e07408562bedb8b60ce05c1decfe3ad16b72230967de01f640b7e4729b49fce"
        }
    ],
    "pagination": {
        "count": 2,
        "num_pages": 1,
        "per_page": 20,
        "page": 1
    }
}

Request

Query Params
per_page
string 
optional
<= 10000 characters
Default:
100
Example:
20
page
string 
optional
Default:
1
Example:
5
Header Params
Authorization
string 
required
Example:
{{labs_token}}

Responses

🟢200Success
application/json
Body
code
integer 
required
message
string 
required
data
array [object {3}] 
required
id
integer 
required
network
string 
optional
sha256
string 
required
pagination
object 
required
count
integer 
required
num_pages
integer 
required
per_page
integer 
required
page
integer 
required
Modified at 2025-07-15 07:08:40
Previous
Add to watch list
Next
Delete from watch list
Built with