CryptoGuard
CryptoGuard validates cryptocurrency trades before execution using physics-based wave simulation and spectral analysis. How It Works Send a token name, address, or trade parameters to any endpoint. The engine runs deterministic physics-based analysis — Klein-Gordon wave decomposition, Matern covariance modeling, phase coherence detection — and returns structured verdicts (PROCEED / CAUTION /…
CryptoGuard endpoints
| Method | Endpoint | Description |
|---|---|---|
| Status | ||
| GET |
free_tier_status_v1_free_tier_get /v1/free-tier |
Check how many free calls you have remaining today. |
| GET |
track_record_v1_track_record_get /v1/track-record |
Return the public track record of all CAUTION/BLOCK verdicts (token, verdict, score, timestamp, context). |
| GET |
stats_v1_stats_get /v1/stats |
Current service statistics. |
| GET |
health_health_get /health |
Check CryptoGuard and WaveGuard status. |
| Info | ||
| GET |
pricing_v1_pricing_get /v1/pricing |
Current pricing tiers and payment options. |
| Billing | ||
| POST |
subscribe_v1_subscribe_post /v1/subscribe |
Create a Stripe Checkout session for a CryptoGuard subscription. Returns a redirect URL to Stripe's hosted checkout page. After payment, you'll receive an API key at your success… |
| Discovery | ||
| GET |
search_v1_search_get /v1/search |
Search CoinGecko for tokens. Returns coin IDs you can use with /v1/scan. **Free** â no payment required. Example: `/v1/search?q=pepe` |
| Scanning | ||
| POST |
scan_portfolio_endpoint_v1_portfolio_scan_post /v1/portfolio/scan |
Scan up to 50 tokens in a single batch. **Cost-efficient**: One WaveGuard call for all tokens = $0.05 flat. **Example**: ```json { "coin_ids": ["bitcoin", "ethereum", "solana",… |
| GET |
scan_single_v1_scan__coin_id__get /v1/scan/{coin_id} |
Scan a single token for anomalous market behavior. **How it works:** 1. Fetches live market data for the token from CoinGecko 2. Builds baseline from TIER-MATCHED peers (not… |
| GET |
scan_history_v1_scan__coin_id__history_get /v1/scan/{coin_id}/history |
Compare a token's CURRENT metrics against its OWN recent history. Instead of comparing to other coins, this answers: "Is this token behaving unusually compared to ITSELF?"… |
| DEX | ||
| GET |
dex_pair_v1_dex_pair__chain___pair_address__get /v1/dex/pair/{chain}/{pair_address} |
Fetch detailed info for a specific DEX trading pair. **Free** â no payment required. **Example**: `GET /v1/dex/pair/solana/0xabc123...` |
| GET |
dex_token_pairs_v1_dex_token__token_address__get /v1/dex/token/{token_address} |
Fetch all DEX pairs for a token by its contract address. **Free** â no payment required. **Example**: `GET /v1/dex/token/0x6982508145454ce325ddbe47a25d4ec3d2311933` |
| GET |
dex_search_v1_dex_search_get /v1/dex/search |
Search DexScreener for trading pairs. **Free** â no payment required. **Example**: `GET /v1/dex/search?q=pepe` |
| GET |
dex_new_pairs_v1_dex_new_pairs_get /v1/dex/new-pairs |
Discover recently created DEX trading pairs. Scans DexScreener for new token launches filtered by liquidity and age. Useful for finding new opportunities AND spotting potential… |
| GET |
rug_check_v1_rug_check__chain___pair_address__get /v1/rug-check/{chain}/{pair_address} |
Assess rug pull risk for a specific DEX trading pair. Scores 6 risk factors (0-100): - Liquidity depth (low = easy to rug) - Pair age (new = higher risk) - Volume/liquidity ratio… |
| Trade Validation | ||
| POST |
counterfactual_trade_endpoint_v1_intel_counterfactual_trade_post /v1/intel/counterfactual-trade |
Run stateless what-if analysis for a candidate trade profile. Caller submits baseline and counterfactual variants in one call. |
| POST |
validate_trade_endpoint_v1_validate_trade_post /v1/validate-trade |
**PRIMARY ENDPOINT** â Validate a crypto trade before execution. One call. One verdict. Every trade vetted. Accepts a token name, symbol, or contract address. Automatically: 1.… |
| POST |
validate_trade_plus_endpoint_v1_intel_validate_trade_plus_post /v1/intel/validate-trade-plus |
Premium stateless decision bundle for per-transaction execution gating. Caller provides all context in one request (training/test plus optional… |
| POST |
validate_trades_endpoint_v1_validate_trades_post /v1/validate-trades |
Validate up to 20 trades in a single call. Each trade runs the full validation pipeline independently. Returns per-trade verdicts and a summary verdict (worst across all).… |
| Intelligence | ||
| POST |
volatility_forecast_v1_volatility_forecast_post /v1/volatility-forecast |
Estimate volatility regime using Lyapunov-inspired instability probing and wave equation energy dynamics. Evolves the price series through the LFM lattice and measures: -… |
| POST |
momentum_pulse_v1_momentum_pulse_post /v1/momentum-pulse |
Generate physics-based momentum and timing signals. Evolves the price series through the wave equation to measure: - **Wave energy**: Total energy in the evolved price field… |
| POST |
regime_detect_v1_regime_detect_post /v1/regime-detect |
Identify market regime using phase coherence and instability analysis. Uses the WaveGuard physics engine to measure how **synchronized** market signals are (phase coherence) and… |
| POST |
correlation_scan_v1_correlation_scan_post /v1/correlation-scan |
Analyze physics-based structural correlations between assets. Uses the WaveGuard interaction matrix to compute pairwise correlations through the LFM lattice. Unlike Pearson… |
| POST |
spectral_scan_v1_spectral_scan_post /v1/spectral-scan |
Detect dominant price cycles using chi-modulated spectral analysis. Unlike plain FFT, this evolves the signal through the LFM wave equation lattice where the Ï-field acts as a… |
| POST |
whale_detector_v1_whale_detector_post /v1/whale-detector |
Detect whale accumulation or distribution via volume anomaly analysis. Uses WaveGuard's zero-shot anomaly detection on volume patterns. A whale accumulating will create volume… |
| POST |
trend_detect_v1_trend_detect_post /v1/trend-detect |
Detect market trend using physics-based spectral analysis. Evolves price data through the LFM wave equation lattice, then performs FFT spectral decomposition. The chi-field acts… |
| Agent Discovery | ||
| GET |
agent_tools_mcp_v1_agent_mcp_get /v1/agent/mcp |
Tool definitions in MCP (Model Context Protocol) format. |
| GET |
agent_tools_openai_v1_agent_tools_get /v1/agent/tools |
Tool definitions for AI agents. Returns structured tool descriptions compatible with MCP, OpenAI function calling, and other AI agent frameworks. |
| MCP | ||
| POST |
mcp_endpoint_mcp_post /mcp |
MCP (Model Context Protocol) endpoint for AI agent integration. Accepts JSON-RPC 2.0 messages. Supports: - initialize - tools/list - tools/call - resources/list - prompts/list -… |
| GET |
mcp_tools_list_mcp_tools_get /mcp/tools |
List all MCP tools available on this server. |
CryptoGuard pricing
| Plan | Price | Rate limit | Quotas |
|---|---|---|---|
| BASIC | Free | 1 / hour |
|
| PRO | $9.99 / month | 60 / minute |
|
| ULTRA | $29.99 / month | 300 / minute |
|