Skip to main content
GET
/
addresses
/
{address}
Threat Considerations for an Address
curl --request GET \
  --url https://api.webacy.com/addresses/{address} \
  --header 'x-api-key: <api-key>'
{
  "count": 1,
  "medium": 0,
  "high": 0,
  "overallRisk": 0,
  "addressType": "CONTRACT",
  "tokenStandard": "ERC20",
  "issues": [],
  "details": {
    "multiPlatformAnalysisData": {
      "developerAddress": "ESoMiyuJ1ksL5L99LjYCcwjt7XR2B7hdn6mkbBDFbadV",
      "analyzedAt": "2025-09-05T18:28:55.907Z",
      "platformBreakdown": {
        "pump_fun": {
          "platform": "pump_fun",
          "chains": [
            "sol"
          ],
          "totalLaunches": 74,
          "successfulLaunches": 70,
          "successRate": 94.59,
          "totalFundsRaised": 0,
          "platformRiskFactors": [
            "Tokens consistently fail to gain traction"
          ],
          "tokens": [
            {
              "tokenAddress": "99MgGxwRvApTLoKfXbY6HcXmNVbXY5quAYy3Mgtopump",
              "platform": "pump_fun",
              "chain": "sol",
              "developerAddress": "ESoMiyuJ1ksL5L99LjYCcwjt7XR2B7hdn6mkbBDFbadV",
              "successful": false,
              "status": "rugged",
              "name": "Dug the Dog",
              "symbol": "Dug",
              "launchedAt": "2025-06-27T03:36:23.000Z"
            },
            {
              "tokenAddress": "4wTV1YmiEkRvAtNtsSGPtUrqRYQMe5SKy2uB4Jjaxnjf",
              "platform": "pump_fun",
              "chain": "sol",
              "developerAddress": "ESoMiyuJ1ksL5L99LjYCcwjt7XR2B7hdn6mkbBDFbadV",
              "successful": true,
              "status": "successful",
              "name": "",
              "symbol": "",
              "launchedAt": "2025-06-27T03:37:05.000Z",
              "successMetrics": {
                "criteriaType": "bonding_curve_completion",
                "targetValue": 69000,
                "achievedValue": 69000,
                "successPercentage": 100,
                "liquidityAmount": 12000,
                "migrationDestination": "raydium",
                "additionalMetrics": {
                  "detectionMethod": "market_cap"
                }
              }
            }
          ]
        }
      }
    }
  }
}

Authorizations

x-api-key
string
header
required

Path Parameters

address
string
required

Query Parameters

chain
enum<string>

Selected chain. This includes 'eth', 'base', 'bsc', 'pol', 'opt', 'arb', 'sol', 'ton', 'sei', 'sui', 'btc', and 'stellar'.

Available options:
eth,
base,
bsc,
pol,
opt,
sol,
arb,
ton,
sei,
sui,
btc,
stellar
show_low_risk
boolean

Boolean to determine whether to show low risk issues or not

hide_trust_flags
boolean

Boolean to determine whether to hide trust-related flags from the response

modules
enum<string>[]

Comma-separated list of risk analysis modules to execute. Available modules control which specific risk analyses are performed. DEFAULT: All modules are analyzed for complete risk assessment. PERFORMANCE: Specify specific modules to filter results and improve response time. EXAMPLE: Use 'developer_migration' to analyze multi-platform token launch patterns for serial token creators.

Risk analysis modules. Each module analyzes specific risk categories: governance_analysis (contract ownership, upgradeability), token_security (freezeable, mintable, blacklist), contract_analysis (vulnerabilities), market_data (price, volatility), holder_analysis (token distribution), liquidity_analysis (pool data), fraud_detection (drainer, rugpull), sanctions_compliance (OFAC), mixer_detection (tornado cash), address_behavior (trading patterns), transaction_analysis (address poisoning), reputation_analysis (reported addresses), solana_specific (bundling, sniping), evm_specific (gas optimization), ton_specific (jetton standards), sui_specific (coin standards, object model), basic_info (address metadata), security_essentials (core security flags only), fund_flow_screening (simplified boolean indicators for fund flow risks including OFAC, hackers, mixers, drainers, FBI IC3, and Tornado Cash), developer_migration (multi-platform token launch analysis for detecting serial token creators and rugpull patterns across platforms like pump.fun and moonshot)

Available options:
source_code_analysis,
governance_analysis,
token_security,
contract_analysis,
market_data,
holder_analysis,
liquidity_analysis,
fraud_detection,
sanctions_compliance,
mixer_detection,
address_behavior,
transaction_analysis,
reputation_analysis,
solana_specific,
evm_specific,
ton_specific,
sui_specific,
basic_info,
security_essentials,
fund_flow_screening,
developer_migration

Response

Success

count
integer

Number of transactions

Example:

1

medium
integer

Number of medium risk transactions

Example:

1

high
integer

Number of high risk transactions

Example:

0

overallRisk
number

Overall risk score

Example:

25.99

issues
object[]

List of issues found

details
object

Detailed analysis information

context
object[]

Contextual information tags that are NOT security risks (e.g., paid DexScreener promotional info)

isContract
boolean

Legacy field indicating if the address has bytecode deployed (true) or is an EOA (false). For more detailed classification, use addressType. Note: May be true for EIP-7702 delegated EOAs that have bytecode but are functionally EOAs. Optional for chains without smart contracts (e.g., BTC).

Example:

false

addressType
enum<string>

Detailed classification of the address type. Indicates whether the address is an EOA, smart contract, token, contract wallet, or other chain-specific type. For EIP-7702 delegated EOAs, this will be 'EOA' even if bytecode exists. May be undefined if classification is unavailable.

Available options:
CONTRACT,
EOA,
TOKEN,
CONTRACT_WALLET,
OBJECT,
PACKAGE,
DYNAMIC_FIELD,
UNKNOWN
tokenStandard
enum<string>

Token standard classification if the address represents a token contract (e.g., ERC20, ERC721, SPL). Only populated for token addresses. May be undefined for non-token addresses or if standard cannot be determined.

Available options:
ERC20,
ERC1155,
ERC721,
SPL,
NFT,
JETTON,
JETTON_WALLET,
TONNFT,
UNKNOWN,
SUI_COIN,
SUI_NFT,
STELLAR_ASSET