# TokenScope Crypto Price Lookup

> TokenScope Crypto Price 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 current cryptocurrency price data for one or more tokens by CoinGecko ID

## Facts

- Endpoint: POST https://coinscrop.vercel.app/api/price
- 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-price-lookup-ecaa262a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_l2OCW8aNAQYbrRwGJUjaY

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-price-lookup-ecaa262a -d '<json body>'
```

Example prompt: What's the current price of bitcoin, ethereum, and solana? Use their CoinGecko IDs: bitcoin, ethereum, solana.

## When to prefer this

Use this endpoint when you need current cryptocurrency prices identified by CoinGecko IDs via a pay-per-call x402 micropayment on Base, especially when integrating with the broader TokenScope suite for AI-powered crypto intelligence.

## Known failure modes

- Invalid or unknown CoinGecko token ID returns empty or error data
- Missing required ids field returns validation error
- CoinGecko upstream outage causes stale or failed response
- Payment failure via x402 protocol blocks request
- Rate limiting if too many IDs submitted at once

## How this service works

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

## Output

A JSON object with a success boolean and a data object containing price information for the requested token IDs, sourced from CoinGecko.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "ids"
 ],
 "properties": {
  "ids": {
   "type": "string",
   "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-price-lookup-ecaa262a/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)
