# Nemu Crypto Intelligence — Token Profiles

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

Retrieves AI-powered token profile data for a given cryptocurrency token using CoinGecko, DexScreener, and MiMo LLM analysis

## Facts

- Endpoint: POST https://nemumu.orbonomy.xyz/api/token-profiles
- Price: $0.02/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-token-profiles-89e4b467
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_eBrflg4OuFKJO2hzXiwxd

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-token-profiles-89e4b467 -d '<json body>'
```

Example prompt: Can you pull up the Nemu token profile for PEPE — I want the AI-powered analysis including market data from CoinGecko and DexScreener?

## When to prefer this

Choose this endpoint when you need a consolidated AI-enriched token profile combining CoinGecko market data, DexScreener DEX data, and LLM-generated analysis in a single call. Ideal for agents building crypto research workflows, token due diligence tools, or DeFi dashboards that need more than raw price data.

## Known failure modes

- Token not found on CoinGecko or DexScreener — returns success: false with error detail
- Invalid or malformed token identifier — 400-level error
- Payment not settled via x402 — 402 Payment Required before data is returned
- Upstream API (CoinGecko/DexScreener) rate limit or downtime — may return partial or failed 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 the token's profile, which may include market data aggregated from CoinGecko and DexScreener along with AI-generated analysis from the MiMo LLM, covering token metadata, price context, and intelligence summary.

## Request schema (JSON Schema)

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

## 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-token-profiles-89e4b467/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)
