# Nemu Crypto Intelligence — Token Profiles

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

Fetches AI-enriched token profile data for a given crypto token using CoinGecko, DexScreener, and MiMo LLM analysis

## Facts

- Endpoint: POST https://nemura.orbonomy.xyz/api/token-profiles
- Price: $0.02/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-token-profiles-56b01295
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LjJsKharDdaPRvjecceHV

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

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

## When to prefer this

Choose this endpoint when you need a rich, AI-synthesized profile of a specific crypto token combining on-chain DEX data (DexScreener) with broader market data (CoinGecko) and natural language AI interpretation (MiMo LLM). Prefer this over raw CoinGecko or DexScreener APIs when you want a single unified profile rather than raw data endpoints.

## Known failure modes

- Invalid or unrecognized token identifier returns success: false with error detail
- Token not found on CoinGecko or DexScreener returns empty or null data
- Payment failure via x402 results in 402 status before response
- Network timeout if upstream data providers are slow
- Malformed request body missing required token field returns validation error

## How this service works

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

## Output

Returns a success flag and a data object containing AI-enriched token profile information, likely including token metadata, market statistics sourced from CoinGecko and DexScreener, and MiMo LLM-generated analysis of the token.

## 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-56b01295/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)
