# TokenScope Coin Data Lookup

> TokenScope Coin Data Lookup 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 crypto analysis data for a specific coin using CoinGecko, DexScreener, and MiMo LLM intelligence

## Facts

- Endpoint: POST https://coinscrop.vercel.app/api/coin
- 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-coin-data-lookup-4d53e7ab
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_QRNiKksRMPgur8YVORlgn

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-coin-data-lookup-4d53e7ab -d '<json body>'
```

Example prompt: Can you pull up the AI-powered TokenScope analysis for bitcoin — I want to see the CoinGecko and DexScreener intelligence on it?

## When to prefer this

Choose this endpoint when you need AI-enriched cryptocurrency analysis for a specific coin by its CoinGecko-style ID, combining market data from multiple sources (CoinGecko, DexScreener) with LLM-generated intelligence in a single call. Prefer over raw CoinGecko or DexScreener direct APIs when you want consolidated, AI-interpreted output on a per-coin basis.

## Known failure modes

- Invalid or unknown coin ID returns error or empty data object
- Network timeout from upstream CoinGecko or DexScreener APIs
- success: false with no data if coin not found
- Payment failure via x402 protocol returns 402 before any data is returned
- Rate limiting if coin ID is queried too rapidly

## How this service works

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

## Output

Returns a success flag and a data object containing AI-powered crypto analysis for the specified coin, aggregating CoinGecko market data, DexScreener DEX data, and MiMo LLM-generated insights

## 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-coin-data-lookup-4d53e7ab/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)
