Data about a specific wallet address or a contract deployer address.
Includes transaction count, tokens held with respective balances, ETH transaction history, other token transaction history, and much more.
Query Parameters
Name
Type
Description
include_history
Boolean
Get historical address interactions
include_txs
Boolean
Get historical address transactions
is_deployer
Boolean
Include Token Sniffer deployer data
{
data: {
address: string
ETH: {
price: {
rate: number
diff: number
diff7d: number
ts: number
marketCapUsd: number
availableSupply: number
volume24h: number
volDiff1: number
volDiff7: number
volDiff30: number
diff30d: number
}
balance: number
rawBalance: string
}
countTxs: number
tokens?: [ # Tokens held by wallet address
{
tokenInfo: {
address: string
decimals: string
name: string
symbol: string
totalSupply: string
issuancesCount: number
lastUpdated: number
holdersCount: number
ethTransfersCount: number
price: boolean
}
balance: number
totalIn: number
rawBalance: string
}
...
]
history?: [ # Transaction history excluding ETH
{
timestamp: string
transactionHash: string
tokenInfo: any
type: string
address: string
from: string
to: string
value: any
}
...
]
transactions?: [ # Strictly ETH transactions
{
timestamp: string
from: string
to: string
hash: string
value: string | number
input: any
success: boolean
}
...
]
deployerData?: { # If using `is_deployer` param, this is returned
message: string
malicious_contracts_count: string | number
categories: [
{
name: string
types: any[]
count: string | number
}
...
]
contracts: [
{
chainId: number | string
address: string
types: any[]
}
...
]
}
}
message: 'Success'
isError: false
}