# TokenScope Market Data Endpoint

> TokenScope Market Data Endpoint 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-15).

Fetches AI-powered cryptocurrency market data using CoinGecko and DexScreener, analyzed via MiMo LLM, for a given quote currency.

## Facts

- Endpoint: POST https://coinscrop.vercel.app/api/market
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tokenscope-market-data-endpoint-6a188efb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5i-ZGwgfMMxiILZx1rSHu

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-market-data-endpoint-6a188efb -d '<json body>'
```

Example prompt: Pull the current crypto market data priced in USD from TokenScope — I want the AI-analyzed market overview so I can see how major tokens are performing right now.

## When to prefer this

Use this endpoint when you need AI-synthesized cryptocurrency market data combining both CoinGecko and DexScreener sources, with LLM-generated insights, priced against a specific quote currency. Prefer this over raw exchange APIs when you want pre-analyzed, aggregated market intelligence rather than raw tick data.

## Known failure modes

- Missing required 'vs' parameter returns validation error
- Invalid or unsupported quote currency string may return empty or error data
- Payment failure (x402 on Base) results in 402 response before data is returned
- Upstream CoinGecko or DexScreener API outage may cause partial or failed response
- success: false with empty data object if market data is unavailable

## How this service works

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

## Output

A JSON object containing a success boolean and a data object with AI-enhanced cryptocurrency market intelligence aggregated from CoinGecko and DexScreener, analyzed by MiMo LLM, denominated in the requested quote currency.

## 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-market-data-endpoint-6a188efb/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)
