Darkrecon
Search Queries
Crypto Wallet Search

Crypto Wallet Check

Directly search the crypto wallet by using either wallet address or wallet type

CryptoWalletSearch Payload

{
   "crypto_wallet" : {
    "address" : "0xd4689969925C842asdasdasnd"
   }
}

OR

{
   "crypto_wallet" : {
    "type" : "ETH"
   }
}

Supported Crypto Wallet Type

BTC
ETH
LTC
SOL
TRX
āš ļø

Searching for both TYPE & ADDRESS at the same time will result into an error.

Example

import requests
 
url = 'https://api.darkrecon.cloud/dark-recon/search'
headers = {
  'Authorization': 'your api key here',
  'Content-Type': 'application/json'
}
data = {
 "crypto_wallet" : {
  "address" : "0xd4689969925C842asdasdasnd"
 }
}
 
response = requests.post(url, headers=headers, json=data)
 
print(response.status_code)
print(response.json())