From ave-cloud-skill
Queries AVE Cloud REST API for on-chain crypto data: token searches/prices/charts/holders, trends, wallet histories/PnL, contract security reports, trading pairs.
npx claudepluginhub avecloud/ave-cloud-skill --plugin ave-cloud-skillThis skill uses the workspace's default tool permissions.
Snapshot on-chain token data via the AVE Cloud Data REST API. For shared operating rules and response norms, see [operator-playbook.md](../../references/operator-playbook.md).
Queries Trust Wallet API for crypto token search, prices, trending tokens, swap quotes, market data, security checks, address validation, and asset info across 100+ blockchains.
Queries OKX DEX APIs for token data: search, trending/hot lists, liquidity pools, holder distributions/whales/snipers, risk metadata, buy/sell activity, trades, prices/market cap/volume, top profit addresses, and holder cluster analysis. Manages quotas/payments.
Queries GMGN CLI for crypto token intel on Solana, BSC, Base, Ethereum: price, market cap, liquidity, holders, traders, smart money, KOLs, honeypot/rug risks, socials.
Share bugs, ideas, or general feedback.
Snapshot on-chain token data via the AVE Cloud Data REST API. For shared operating rules and response norms, see operator-playbook.md.
export AVE_API_KEY="your_api_key_here"
export API_PLAN="free" # free | normal | pro
Get a free key at https://cloud.ave.ai/register.
API_PLAN | Read TPS |
|---|---|
free | 1 |
normal | 5 |
pro | 20 |
130+ chains, including bsc, eth, base, solana, tron, polygon, arbitrum, avalanche, sui, ton, aptos.
Find tokens by keyword, symbol, or contract.
python scripts/ave_data_rest.py search --keyword <keyword> [--chain <chain>] [--limit 20]
Look up full details for up to 50 tokens by address-chain.
python scripts/ave_data_rest.py search-details --tokens <addr1>-<chain1> [<addr2>-<chain2> ...]
Browse launchpad or topic feeds by platform tag.
python scripts/ave_data_rest.py platform-tokens --platform <platform>
Get trending tokens for a chain.
python scripts/ave_data_rest.py trending --chain <chain> [--page 0] [--page-size 20]
List available ranking topics.
python scripts/ave_data_rest.py rank-topics
Get ranked tokens for a topic.
python scripts/ave_data_rest.py ranks --topic <topic>
Get price, liquidity, volume, pairs, and token summary.
python scripts/ave_data_rest.py token --address <contract_address> --chain <chain>
Batch price lookup for up to 200 tokens.
python scripts/ave_data_rest.py price --tokens <addr1>-<chain1> <addr2>-<chain2> ...
Run the contract security and honeypot report.
python scripts/ave_data_rest.py risk --address <token> --chain <chain>
Get token holders with sorting.
python scripts/ave_data_rest.py holders --address <token> --chain <chain> [--limit 100] [--sort-by balance] [--order desc]
Get the main or native tokens for a chain.
python scripts/ave_data_rest.py main-tokens --chain <chain>
List supported chain identifiers.
python scripts/ave_data_rest.py chains
Get OHLCV candles by token address.
python scripts/ave_data_rest.py kline-token --address <token> --chain <chain> [--interval 60] [--size 24]
Get OHLCV candles by pair address.
python scripts/ave_data_rest.py kline-pair --address <pair> --chain <chain> [--interval 60] [--size 24]
Get Ondo-mapped kline data by pair address or ticker.
python scripts/ave_data_rest.py kline-ondo --pair <pair_address-chain or ticker> [--interval 60] [--size 24]
Get recent swap transactions for a pair.
python scripts/ave_data_rest.py txs --address <pair> --chain <chain>
Get liquidity add/remove/create events for a pair.
python scripts/ave_data_rest.py liq-txs --address <pair> --chain <chain> [--type all] [--limit 100]
Look up a specific transaction by hash.
python scripts/ave_data_rest.py tx-detail --chain <chain> --account <address> --tx-hash <hash>
Get trading pair information.
python scripts/ave_data_rest.py pair --address <pair> --chain <chain>
Get swap transactions for a wallet address.
python scripts/ave_data_rest.py address-txs --wallet <address> --chain <chain> [--token <token>]
Get profit/loss for a wallet on a specific token.
python scripts/ave_data_rest.py address-pnl --wallet <address> --chain <chain> --token <token>
Get paginated token holdings for a wallet.
python scripts/ave_data_rest.py wallet-tokens --wallet <address> --chain <chain> [--sort last_txn_time] [--hide-sold] [--blue-chips]
Get wallet summary and stats.
python scripts/ave_data_rest.py wallet-info --wallet <address> --chain <chain>
List smart wallets with profit-tier filters.
python scripts/ave_data_rest.py smart-wallets --chain <chain> [--keyword <keyword>]
Get public trading signal feed.
python scripts/ave_data_rest.py signals [--chain solana] [--page-size 10] [--page-no 1]
Run search -> token -> risk -> holders before discussing a new token.
python scripts/ave_data_rest.py search --keyword "DOGE" --chain bsc --limit 5
python scripts/ave_data_rest.py token --address 0xbA2aE424d960c26247Dd6c32edC70B295c744C43 --chain bsc
python scripts/ave_data_rest.py risk --address 0xbA2aE424d960c26247Dd6c32edC70B295c744C43 --chain bsc
python scripts/ave_data_rest.py holders --address 0xbA2aE424d960c26247Dd6c32edC70B295c744C43 --chain bsc
Use shared references for operator rules, response shape, presentation, and fuller API details when the task needs more than the CLI surface here.