# Cryptocurrency Market Snapshot

> Cryptocurrency Market Snapshot is a paid API for AI agents from prance-mounting-watch.ngrok-free.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns a complete market overview for a cryptocurrency token including current price, market cap, 24h volume, 24h price change, all-time high, and category tags.

## Facts

- Endpoint: GET https://prance-mounting-watch.ngrok-free.dev/v1/token/:id
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cryptocurrency-market-snapshot-f938d379
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wuXBJitBwc9xaL9cZcSNE

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 cryptocurrency-market-snapshot-f938d379
```

Example prompt: Can you pull up the full market snapshot for Chainlink — I want current price, market cap, 24-hour volume, 24-hour percent change, all-time high, and its category tags?

## When to prefer this

Use this endpoint when you need a comprehensive market overview for a single token rather than just a spot price. It is ideal when an agent or user needs multiple metrics at once (price + market cap + volume + ATH + category) in a single API call, avoiding multiple round-trips. Prefer the dedicated spot price endpoint if only the current price is needed, or the OHLCV endpoint for historical candlestick data.

## Known failure modes

- Invalid or unrecognized CoinGecko token ID returns an error — ensure the exact CoinGecko slug is used (e.g. 'bitcoin' not 'BTC')
- Token not listed on CoinGecko returns a 404 or empty response
- Network/ngrok gateway timeout if the upstream data provider is unavailable
- Payment failure if the $0.01 USDC x402 payment is not processed before the request

## How this service works

Complete market snapshot for a cryptocurrency: current price, market capitalization, 24-hour trading volume, 24-hour percentage change, all-time high, and category tags. Use this when you need a full picture of a token's market standing rather than just its current price.

## Output

A structured market data object for the requested token containing: current USD price, market capitalization in USD, 24-hour trading volume, 24-hour percentage price change, all-time high price, and category tags associated with the token on CoinGecko.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "id"
     ],
     "properties": {
      "id": {
       "type": "string",
       "description": "CoinGecko token id, e.g. solana, bitcoin, chainlink"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/cryptocurrency-market-snapshot-f938d379/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from prance-mounting-watch.ngrok-free.dev](https://www.zero.xyz/host/prance-mounting-watch.ngrok-free.dev/llms.txt)
