Services
Four services. Pay per use.
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.02
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-sdk v2.1.4
import { SolProbe } from "@solprobe/sdk"
$ 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.02 · ACP escrow released
$
market_intel — example response
# solprobe-sdk v2.1.4
import { SolProbe } from "@solprobe/sdk"
$ 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.20 · ACP escrow released
$
Tier 2Popular
$0.20
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
Tier 3
$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-sdk v2.1.4
import { SolProbe } from "@solprobe/sdk"
$ 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
$
sol_trade — example response
# solprobe-sdk v2.1.4
import { SolProbe } from "@solprobe/sdk"
$ solprobe sol_trade <token_address>
{
"phase": "execute",
"status": "confirmed",
"tx_signature": "5xK9...mQ7",
"input_mint": "So11...1112",
"output_mint": "EPjF...uMk2",
"input_amount": 1000000,
"output_amount_usd": 241.85,
"price_impact_pct": 0.12,
"fee_usdc": 0.15
}
# Fee deducted: $0.15 · ACP escrow released
$
Tier 4
$0.15
Trade
Jupiter-routed swap execution with built-in risk gating
SLA: < 15 seconds
What's checked
- →Phase A — validate request, run risk gate, fetch Jupiter Ultra best-route quote
- →Grade-F tokens rejected before any swap is attempted
- →Returns an unsigned transaction — the buyer wallet never leaves agent control
- →Phase B — broadcast the agent-signed transaction to the network
- →Returns confirmed tx_signature on success
- →Pair with sol_quick_scan for additional structural safety context
Use cases
- ·Autonomous token swaps without human-in-the-loop custody
- ·Risk-gated trade execution for portfolio management agents
- ·Programmatic swaps with Jupiter's aggregated liquidity