# Nemu Crypto Intelligence API — Rug Check

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

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

## Facts

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

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-c2b230a1 -d '<json body>'
```

Example prompt: Can you run a rug check on the token PEPE2 and tell me if it looks like a scam or is safe to buy?

## When to prefer this

Use this endpoint when you need a quick AI-driven rug pull risk assessment for a specific crypto token before making investment decisions. Prefer this over manual research when evaluating newly launched or obscure tokens where community vetting is limited. Best suited for DeFi agents, portfolio managers, or trading bots that need automated token safety screening.

## Known failure modes

- Unknown or unrecognized token query returns empty or null data with success: false
- Malformed query string may return a generic error response
- Token not indexed by CoinGecko or DexScreener may result in insufficient data for analysis
- Rate limiting or payment failure returns 402 status requiring x402 payment on Base or Solana
- MiMo LLM analysis timeout may result in partial or degraded response

## 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 assessment signals derived from CoinGecko and DexScreener data, including indicators of suspicious token behavior, liquidity red flags, and an overall safety evaluation.

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