# TokenScope Crypto Search API

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

Accepts a natural language or token-based query and returns AI-powered crypto analysis combining CoinGecko, DexScreener, and MiMo LLM data

## Facts

- Endpoint: POST https://coinscrop.vercel.app/api/search
- 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-crypto-search-api-47d74002
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Thd4q1yVpNI2MjIwSoxsr

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-search-api-47d74002 -d '<json body>'
```

Example prompt: Search TokenScope for AI-powered analysis of the Solana token — I want price data, market info, and any LLM insights about it right now.

## When to prefer this

Choose this endpoint when you need AI-synthesized crypto intelligence combining on-chain DEX data and market cap data in a single call, especially for tokens discoverable via CoinGecko or DexScreener. Prefer this over raw price APIs when you want LLM-interpreted context alongside raw numbers.

## Known failure modes

- Unknown or unrecognized token query returns empty or low-confidence data
- Network errors from upstream providers (CoinGecko/DexScreener) cause partial results
- Malformed query string may return success:false
- Very new or obscure tokens may have insufficient data for analysis
- Rate limiting or payment failure returns 402

## How this service works

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

## Output

Returns a success boolean and a data object containing AI-synthesized crypto intelligence about the queried token or topic, drawing from CoinGecko market data, DexScreener DEX data, and MiMo LLM reasoning.

## Request schema (JSON Schema)

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

## 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-search-api-47d74002/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)
