# TokenScope Crypto Compare

> TokenScope Crypto Compare 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).

Compares multiple cryptocurrencies side-by-side using AI-powered analysis combining CoinGecko, DexScreener, and MiMo LLM data

## Facts

- Endpoint: POST https://coinscrop.vercel.app/api/compare
- 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-compare-965d17aa
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_CikuGyXwJsUjRkEGgRDIY

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-compare-965d17aa -d '<json body>'
```

Example prompt: Compare Bitcoin, Ethereum, and Solana for me using TokenScope — I want to see which one is performing best right now across price, volume, and market cap.

## When to prefer this

Use this endpoint when you need to compare two or more cryptocurrencies simultaneously with AI-synthesized insights rather than fetching each token individually. Ideal for portfolio research, token selection, or investment due diligence where a head-to-head breakdown is needed.

## Known failure modes

- Invalid or unrecognized coin IDs return error in data field with success:false
- Empty ids array may return validation error
- Payment failure (x402) if USDC balance insufficient on Base
- Rate limiting if too many concurrent requests
- Network timeout if upstream CoinGecko or DexScreener APIs are slow

## How this service works

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

## Output

Returns a structured object with a success flag and a data object containing side-by-side comparative metrics and AI-generated insights for all requested cryptocurrency IDs, drawing from CoinGecko market data, DexScreener DEX data, and MiMo LLM analysis.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "ids"
 ],
 "properties": {
  "ids": {
   "type": "array",
   "description": "ids"
  }
 }
}
```

## 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-compare-965d17aa/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)
