Service
Rug Pull Detector
Detect if a cryptocurrency is susceptible to a rug pull. Analyze tokens for risk factors like concentrated supply, whale holders, and other red flags. Returns risk levels (LOW, MEDIUM, HIGH) with detailed explanations.
x402
mpp
Methods
4 methods available
GET/analyze/{token_address}10000 USDC
/analyze/{token_address}Analyze a token for rug pull risk. Returns a risk score (0-100) with detailed flags such as TOP_HOLDER_WHALE, CONCENTRATED_SUPPLY, etc.
Replace {token_address} with the token's contract address. Optionally pass chain query param (use GET /chains to list supported chains). Returns a risk score, risk level, and flags explaining the rating.
{
"path": {
"token_address": "string (required, EVM 0x... or Solana base58 contract address)"
},
"query": {
"chain": "string (optional, chain name or ID, defaults to 'ethereum')"
}
}GET/chains0 USDC
/chainsList all supported blockchains and their accepted aliases.
GET with no parameters. Returns the list of supported chains and aliases. Useful to discover valid chain values for other endpoints.
GET/report/{token_address}10000 USDC
/report/{token_address}Get a full risk report on a token including Etherscan supplementary data, contract info, liquidity details, and top holders.
Replace {token_address} with the token's contract address. Optionally pass chain query param. Returns a comprehensive report with on-chain analysis.
{
"path": {
"token_address": "string (required, EVM 0x... or Solana base58 contract address)"
},
"query": {
"chain": "string (optional, chain name or ID, defaults to 'ethereum')"
}
}GET/search0 USDC
/searchSearch for tokens matching a name or symbol and return known contract addresses, sorted by market cap rank.
GET with name query param and optional chain param. Returns matching token contract addresses sorted by market cap rank.
{
"query": {
"name": "string (required, token name or symbol to search)",
"chain": "string (optional, chain name or ID, defaults to 'ethereum')"
}
}