# Nemu Crypto Intelligence API — Rug Check

> Nemu Crypto Intelligence API — Rug Check is a paid API for AI agents from nemumu.orbonomy.xyz, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

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

## Facts

- Endpoint: POST https://nemumu.orbonomy.xyz/api/rugcheck
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/nemu-crypto-intelligence-api-rug-check-526eda6e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_uPYcPtAe552bh3TDTM4gw

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-api-rug-check-526eda6e -d '<json body>'
```

Example prompt: Can you run a rug check on the Solana token 'PEPE2024' and tell me if it looks safe or like a scam?

## When to prefer this

Use this endpoint when you need a quick AI-synthesized rug pull safety assessment for a specific crypto token, especially newer or obscure tokens on Base or Solana. Prefer this over manual on-chain analysis when you want an aggregated risk score combining liquidity, holder, and market data in a single call.

## Known failure modes

- Token not found in CoinGecko or DexScreener — returns success: false
- Ambiguous query string — may return wrong token
- API payment not processed — 402 response requiring $0.05 USDC payment
- Malformed query — missing required query field returns validation error
- Network timeout if upstream data providers are slow

## How this service works

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

## Output

A JSON object with a success boolean and a data object containing AI-powered rug pull risk analysis for the queried token, including signals aggregated from CoinGecko and DexScreener processed through the MiMo LLM.

## 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-api-rug-check-526eda6e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from nemumu.orbonomy.xyz](https://www.zero.xyz/host/nemumu.orbonomy.xyz/llms.txt)
