Darkrecon
Search Queries
Crypto Wallet Check

Crypto Wallet Check

Optionally filters results to include or exclude crypto wallet content. Works on true and false only.

CryptoWalletCheck Payload

{ "is_crypto_wallet": true }

Example

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