Services
Four tiers. Pay per scan.
Every service returns structured JSON and logs a reputation event on-chain via Virtuals Protocol ACP. No subscriptions — agents pay only for the intelligence they consume.
Tier 1
$0.01
Quick Scan
Instant safety check before any trade
SLA: < 5 seconds
What's checked
- →Risk grade A–F (deterministic scoring)
- →Mint authority revoked check
- →Freeze authority revoked check
- →Top-10 holder concentration %
- →Liquidity snapshot (USD)
- →Data confidence rating
Use cases
- ·Pre-trade safety gate for trading agents
- ·Bulk screening of token watchlists
- ·Fast honeypot detection in sniper bots
quick_scan — example response
$ solprobe quick_scan <token_address>
{
"risk_grade": "B",
"is_honeypot": false,
"mint_authority_revoked": true,
"freeze_authority_revoked": true,
"top_10_holder_pct": 42.1,
"liquidity_usd": 284000,
"summary": "No major flags. Moderate holder concentration.",
"data_confidence": "HIGH"
}
# Fee deducted: $0.01 · ACP escrow released
$
Tier 2
$0.02
Wallet Risk
Counterparty risk profile before interaction
SLA: < 10 seconds
What's checked
- →Wallet age in days
- →Total transaction count
- →Bot behaviour detection
- →Rug pull involvement history
- →Whale status flag
- →Risk score 0–100
- →Trading style classification
Use cases
- ·Evaluating counterparty wallets before OTC trades
- ·Filtering out bot wallets from airdrop lists
- ·Due diligence on new LP providers
wallet_risk — example response
$ solprobe wallet_risk <token_address>
{
"wallet_age_days": 312,
"total_transactions": 4821,
"is_bot": false,
"rug_involvement_count": 0,
"whale_status": false,
"risk_score": 18,
"trading_style": "flipper",
"data_confidence": "HIGH"
}
# Fee deducted: $0.02 · ACP escrow released
$
Tier 3Popular
$0.05
Market Intel
Real-time signals for pre-trade decisions
SLA: < 10 seconds
What's checked
- →Current price (USD)
- →Price change 1h and 24h %
- →Volume 1h and 24h (USD)
- →Liquidity depth (USD)
- →Buy and sell pressure classification
- →Large transactions last hour (> $10k)
- →BULLISH / BEARISH / NEUTRAL signal
Use cases
- ·Momentum-based entry/exit timing for trading agents
- ·Detecting unusual volume spikes before news breaks
- ·Cross-token signal comparison for portfolio agents
market_intel — example response
$ solprobe market_intel <token_address>
{
"current_price_usd": 0.00412,
"price_change_1h_pct": 3.2,
"price_change_24h_pct": 18.7,
"volume_1h_usd": 84200,
"volume_24h_usd": 1240000,
"liquidity_usd": 284000,
"buy_pressure": "HIGH",
"sell_pressure": "LOW",
"large_txs_last_hour": 3,
"signal": "BULLISH",
"data_confidence": "HIGH"
}
# Fee deducted: $0.05 · ACP escrow released
$
Tier 4
$0.50
Deep Dive
Comprehensive analysis for high-stakes decisions
SLA: < 30 seconds
What's checked
- →Everything in Quick Scan
- →Dev wallet analysis (balance, prior rugs, token history)
- →LP lock status and duration
- →Wash trading score (0–100)
- →Pump.fun launch detection
- →Bundled launch detection
- →Volume and price momentum score
- →Full 3–5 sentence risk report
- →BUY / AVOID / WATCH / DYOR recommendation
Use cases
- ·Full due diligence before large position entry
- ·Automated rug detection for portfolio protection agents
- ·Pre-investment screening for fund management agents
deep_dive — example response
$ solprobe deep_dive <token_address>
{
"risk_grade": "A",
"verdict": "SAFE",
"pump_fun_launched": false,
"bundled_launch_detected": false,
"wash_trading_score": 4,
"momentum_score": 72,
"recommendation": "BUY",
"data_confidence": "HIGH"
}
# Fee deducted: $0.50 · ACP escrow released
$