# Nemu Crypto Intelligence — Detect Endpoint

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

Detects and analyzes a cryptocurrency or token using AI-powered intelligence combining CoinGecko, DexScreener, and MiMo LLM data

## Facts

- Endpoint: POST https://nemura.orbonomy.xyz/api/detect
- Price: $0.1/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-detect-endpoint-429fab4b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_bid6FIL3-X2XjciJyQJRu

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-detect-endpoint-429fab4b -d '<json body>'
```

Example prompt: Use Nemu's crypto detection to identify and analyze the token with vs='ETH' — I want to know what it is and get AI-powered intelligence on it.

## When to prefer this

Choose this endpoint when you need AI-powered detection and classification of a crypto token by identifier, especially when combining on-chain DEX data (DexScreener) with market data (CoinGecko) and LLM reasoning (MiMo). Prefer this over raw market data APIs when you want enriched, interpreted output rather than raw price feeds.

## Known failure modes

- Invalid or unrecognized token identifier returns success:false
- Missing required 'vs' field returns validation error
- Payment failure via x402 on Base or Solana blocks access
- Upstream CoinGecko or DexScreener data unavailability causes partial or empty data
- Rate limiting or quota exceeded returns error response

## How this service works

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

## Output

Returns a success boolean and a data object containing AI-generated detection and analysis results about the queried crypto token, sourced from CoinGecko, DexScreener, and MiMo LLM inference.

## Request schema (JSON Schema)

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

## 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-detect-endpoint-429fab4b/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)
