# TokenScope Crypto Intelligence — Coins List/Analysis

> TokenScope Crypto Intelligence — Coins List/Analysis is a paid API for AI agents from coinscrop.vercel.app, paid per call via x402, $0.15/call, status unknown (last checked 2026-09-14).

Fetches AI-powered cryptocurrency coin data and analysis using CoinGecko, DexScreener, and MiMo LLM, filtered by a currency pair or quote currency

## Facts

- Endpoint: POST https://coinscrop.vercel.app/api/coins
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tokenscope-crypto-intelligence-coins-list-analysis-106c6956
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OOyyFa4ZuZqxHk--HyPCM

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-coins-list-analysis-106c6956 -d '<json body>'
```

Example prompt: Using TokenScope, pull the current crypto coin list and AI analysis against USD so I can see which tokens are trending right now.

## When to prefer this

Use this endpoint when you need AI-enriched cryptocurrency coin data combining CoinGecko market data, DexScreener DEX data, and LLM-generated analysis in a single call, especially when you want results normalized to a specific quote currency via the 'vs' parameter.

## Known failure modes

- Missing required 'vs' field returns a validation error
- Invalid currency string may return empty or error data
- Payment failure via x402/Base USDC blocks the request
- Upstream CoinGecko or DexScreener downtime may cause partial or failed responses
- success: false returned if data pipeline fails

## How this service works

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

## Output

Returns a JSON object with a success boolean and a data object containing coin listings, prices, and AI-powered market analysis denominated in the specified quote currency (vs), sourced from CoinGecko and DexScreener and enriched 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-coins-list-analysis-106c6956/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)
