# TokenScope Crypto Intelligence — Detect Endpoint

> TokenScope Crypto Intelligence — Detect Endpoint is a paid API for AI agents from coinscrop.vercel.app, paid per call via x402, $0.3/call, status unknown (last checked 2026-09-15).

AI-powered detection and analysis of a crypto token or asset using CoinGecko, DexScreener, and MiMo LLM data

## Facts

- Endpoint: POST https://coinscrop.vercel.app/api/detect
- Price: $0.3/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tokenscope-crypto-intelligence-detect-endpoint-3390446d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Xf7avWIzAdpmu4tq0gW6B

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 tokenscope-crypto-intelligence-detect-endpoint-3390446d -d '<json body>'
```

Example prompt: Can you run a TokenScope detection on the crypto token with symbol ETH — I want to know if it's legitimate, what chain it's on, and any risk signals the AI picks up?

## When to prefer this

Use this endpoint when you need AI-powered crypto token detection and risk analysis that combines on-chain DEX data (DexScreener) with market data (CoinGecko) and an LLM layer (MiMo) — particularly when you want a single call that synthesizes multiple data sources into an intelligence verdict about a token.

## Known failure modes

- Missing required 'vs' field returns validation error
- Unknown or unrecognized token symbol may return empty or null data
- Payment failure (x402 on Base) results in 402 response before analysis runs
- LLM or upstream data provider downtime causes 500 or degraded response
- Ambiguous token identifier may return incorrect or low-confidence detection

## How this service works

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

## Output

Returns a success boolean and a data object containing AI-powered detection results about the specified crypto token, potentially including legitimacy signals, chain information, and risk indicators sourced from CoinGecko and DexScreener processed by MiMo LLM.

## 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/tokenscope-crypto-intelligence-detect-endpoint-3390446d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from coinscrop.vercel.app](https://www.zero.xyz/host/coinscrop.vercel.app/llms.txt)
