# TokenScope Crypto Intelligence — Analyze Endpoint

> TokenScope Crypto Intelligence — Analyze 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).

Analyzes a cryptocurrency token by ID using AI (MiMo LLM) combined with CoinGecko and DexScreener data to return structured crypto intelligence

## Facts

- Endpoint: POST https://coinscrop.vercel.app/api/analyze
- 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-analyze-endpoint-1ed13095
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_oa1JPdjAp13FqwosmuvVn

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-analyze-endpoint-1ed13095 -d '<json body>'
```

Example prompt: Can you run a full AI-powered crypto analysis on bitcoin (use the CoinGecko ID 'bitcoin') and tell me what the intelligence report says about its fundamentals and market data?

## When to prefer this

Choose this endpoint when you need an AI-synthesized intelligence report on a specific crypto token combining on-chain DEX data, CoinGecko market data, and LLM reasoning in a single call, rather than querying these data sources separately

## Known failure modes

- Invalid or unknown token ID returns error or empty data
- Token not found on CoinGecko or DexScreener returns partial or failed response
- LLM analysis failure may return success:false
- Rate limiting or payment failure returns 402 or error
- Malformed request missing required 'id' field returns validation error

## How this service works

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

## Output

A JSON object with a 'success' boolean and a 'data' object containing AI-generated analysis of the specified token, synthesized from CoinGecko market data, DexScreener DEX data, and MiMo LLM reasoning

## Request schema (JSON Schema)

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

## 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-analyze-endpoint-1ed13095/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)
