# Nemu Crypto Intelligence — Rug Check Endpoint

> Nemu Crypto Intelligence — Rug Check Endpoint is a paid API for AI agents from nremum.vercel.app, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-13).

Analyzes a crypto token or project query for rug pull risk signals using AI-powered analysis combining CoinGecko, DexScreener, and MiMo LLM data

## Facts

- Endpoint: POST https://nremum.vercel.app/api/rugcheck
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/nemu-crypto-intelligence-rug-check-endpoint-9a15f5db
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_AG0HDYCBgSjghYWJ_bQlV

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability nemu-crypto-intelligence-rug-check-endpoint-9a15f5db -d '<json body>'
```

Example prompt: Can you run a rug check on the token PEPE2 for me — I want to know if it's a scam or safe before I buy any?

## When to prefer this

Use this endpoint when you need a quick AI-synthesized rug pull risk assessment for a specific crypto token, memecoin, or DeFi project — especially before making a purchase decision. Prefer this over manual on-chain analysis when you want aggregated signals from CoinGecko and DexScreener combined with LLM-powered interpretation in a single call. Best suited for retail investors, trading bots, or research agents that need fast fraud screening.

## Known failure modes

- Unknown or very new token not indexed by CoinGecko or DexScreener returns empty or low-confidence results
- Ambiguous query string matches multiple tokens causing incorrect analysis
- Payment failure via x402 on Base or Solana results in 402 error and no response
- Malformed query input returns success: false with no data
- Rate limiting or upstream API downtime from CoinGecko or DexScreener causes degraded results

## How this service works

AI-powered crypto analysis. CoinGecko + DexScreener + MiMo LLM. 20 endpoints. x402 on Base + Solana.

## Output

Returns a JSON object with a success boolean and a data object containing the rug check analysis — including risk signals, safety indicators, potential scam patterns, and AI-synthesized assessment of the queried token or project based on CoinGecko, DexScreener, and MiMo LLM data.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "query"
 ],
 "properties": {
  "query": {
   "type": "string",
   "description": "query"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "success"
 ],
 "properties": {
  "data": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/nemu-crypto-intelligence-rug-check-endpoint-9a15f5db/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from nremum.vercel.app](https://www.zero.xyz/host/nremum.vercel.app/llms.txt)
