Install
$ agentstack add skill-avecloud-ave-cloud-skill-data-rest ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
ave-data-rest
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).
Setup
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.
Rate Limits
| API_PLAN | Read TPS | |---|---| | free | 1 | | normal | 5 | | pro | 20 |
Supported Chains
130+ chains, including bsc, eth, base, solana, tron, polygon, arbitrum, avalanche, sui, ton, aptos.
Operations
Token Discovery
Search tokens
Find tokens by keyword, symbol, or contract.
python scripts/ave_data_rest.py search --keyword [--chain ] [--limit 20]
Search token details (batch)
Look up full details for up to 50 tokens by address-chain.
python scripts/ave_data_rest.py search-details --tokens - [- ...]
Platform tokens
Browse launchpad or topic feeds by platform tag.
python scripts/ave_data_rest.py platform-tokens --platform
Trending
Get trending tokens for a chain.
python scripts/ave_data_rest.py trending --chain [--page 0] [--page-size 20]
Rank topics
List available ranking topics.
python scripts/ave_data_rest.py rank-topics
Ranks
Get ranked tokens for a topic.
python scripts/ave_data_rest.py ranks --topic
Token Detail
Token detail
Get price, liquidity, volume, pairs, and token summary.
python scripts/ave_data_rest.py token --address --chain
Token prices (batch)
Batch price lookup for up to 200 tokens.
python scripts/ave_data_rest.py price --tokens - - ...
Risk report
Run the contract security and honeypot report.
python scripts/ave_data_rest.py risk --address --chain
Holders
Get token holders with sorting.
python scripts/ave_data_rest.py holders --address --chain [--limit 100] [--sort-by balance] [--order desc]
Main tokens
Get the main or native tokens for a chain.
python scripts/ave_data_rest.py main-tokens --chain
Chains
List supported chain identifiers.
python scripts/ave_data_rest.py chains
Kline / Charts
Kline by token
Get OHLCV candles by token address.
python scripts/ave_data_rest.py kline-token --address --chain [--interval 60] [--size 24]
Kline by pair
Get OHLCV candles by pair address.
python scripts/ave_data_rest.py kline-pair --address --chain [--interval 60] [--size 24]
Kline Ondo
Get Ondo-mapped kline data by pair address or ticker.
python scripts/ave_data_rest.py kline-ondo --pair [--interval 60] [--size 24]
Transactions
Swap transactions
Get recent swap transactions for a pair.
python scripts/ave_data_rest.py txs --address --chain
Liquidity transactions
Get liquidity add/remove/create events for a pair.
python scripts/ave_data_rest.py liq-txs --address --chain [--type all] [--limit 100]
Transaction detail
Look up a specific transaction by hash.
python scripts/ave_data_rest.py tx-detail --chain --account --tx-hash
Pair
Pair detail
Get trading pair information.
python scripts/ave_data_rest.py pair --address --chain
Wallet / Address
Wallet swap history
Get swap transactions for a wallet address.
python scripts/ave_data_rest.py address-txs --wallet --chain [--token ]
Wallet token PnL
Get profit/loss for a wallet on a specific token.
python scripts/ave_data_rest.py address-pnl --wallet --chain --token
Wallet token holdings
Get paginated token holdings for a wallet.
python scripts/ave_data_rest.py wallet-tokens --wallet --chain [--sort last_txn_time] [--hide-sold] [--blue-chips]
Wallet overview
Get wallet summary and stats.
python scripts/ave_data_rest.py wallet-info --wallet --chain
Smart wallet discovery
List smart wallets with profit-tier filters.
python scripts/ave_data_rest.py smart-wallets --chain [--keyword ]
Signals
Public trading signals
Get public trading signal feed.
python scripts/ave_data_rest.py signals [--chain solana] [--page-size 10] [--page-no 1]
Workflow Example
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
Reference
Use shared references for operator rules, response shape, presentation, and fuller API details when the task needs more than the CLI surface here.
- [operator-playbook.md](../../references/operator-playbook.md)
- [error-translation.md](../../references/error-translation.md)
- [response-contract.md](../../references/response-contract.md)
- [presentation-guide.md](../../references/presentation-guide.md)
- [learn-more.md](../../references/learn-more.md)
- [data-api-doc.md](../../references/data-api-doc.md)
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: AveCloud
- Source: AveCloud/ave-cloud-skill
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.