Crypto token rug-pull risk checker (currently offline).
What it does
CryptoRugMunch appears to be an x402-protocol endpoint designed to check the risk level of cryptocurrency tokens, likely assessing rug-pull probability or other scam indicators. The endpoint path `/api/agent/v1/check-risk` suggests it accepts a token identifier and returns a risk assessment.
However, the entire service is currently offline. The endpoint is hosted behind an ngrok tunnel (`cryptorugmunch.ngrok.app`), and ngrok reports ERR_NGROK_3200 — meaning the tunnel owner's local server is not running. Every crawled page (root, docs, API, pricing, README) returns the same ngrok offline error. The probe also failed to elicit a 402 challenge on either GET or POST, returning 404 instead. No documentation, schema, pricing information, or examples are available. The service name and URL path are the only clues to its intended functionality.
Capabilities
Use cases
- —Assessing rug-pull risk before investing in a new token
- —Automated screening of token contracts for scam indicators
- —Portfolio risk monitoring for crypto agents
Fit
Best for
- —Crypto trading agents needing pre-trade risk checks
- —DeFi protocols screening new token listings
- —Wallet applications warning users about risky tokens
Not for
- —Any production use — the endpoint is currently offline
- —Non-crypto risk assessment tasks
Quick start
# Endpoint is currently offline (ngrok tunnel down).
# When live, the intended call would likely be:
curl -X POST https://cryptorugmunch.ngrok.app/api/agent/v1/check-risk \
-H "Content-Type: application/json" \
-d '{"token": "0xABC..."}'Endpoint
Quality
The endpoint is completely offline (ngrok ERR_NGROK_3200 on all pages). No 402 challenge was returned, no documentation or schema exists, and no pricing is available. Functionality is inferred solely from the URL path and subdomain name.
Warnings
- —Endpoint is offline — ngrok tunnel (ERR_NGROK_3200) is not connected
- —No x402 402 challenge was returned; endpoint may not be properly configured
- —Hosted on ngrok free/dev tunnel — availability is inherently ephemeral and unreliable
- —No documentation, schema, pricing, or examples available
- —All functionality is speculative, inferred only from the URL path
Citations
- —The ngrok tunnel reports ERR_NGROK_3200 (endpoint offline) on all pageshttps://cryptorugmunch.ngrok.app
- —Probe returned 404 on both POST and GET, no 402 challengehttps://cryptorugmunch.ngrok.app/api/agent/v1/check-risk