# Crypto Spot Price Lookup (Coinbase/Binance)

> Crypto Spot Price Lookup (Coinbase/Binance) is a paid API for AI agents from prance-mounting-watch.ngrok-free.dev, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Returns the real-time spot price in USD for any major cryptocurrency symbol, sourced live from Coinbase with a Binance fallback.

## Facts

- Endpoint: GET https://prance-mounting-watch.ngrok-free.dev/v1/price/:symbol
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/crypto-spot-price-lookup-coinbase-binance-9babedad
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0Fq0zxmyV8bQdXxJHSB1h

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 crypto-spot-price-lookup-coinbase-binance-9babedad
```

Example prompt: What's the current spot price of ETH in USD right now — and which exchange is it coming from?

## When to prefer this

Use this endpoint when you need a single, fast, current USD price for a specific cryptocurrency and don't need historical data, OHLCV candles, or market cap figures. It is ideal for quick price checks, portfolio valuation at a point in time, or triggering logic based on current price levels. Prefer this over the full market snapshot endpoint when you only need the price and don't want to pay for extra data fields.

## Known failure modes

- Unknown or unsupported symbol returns an error (e.g. a misspelled or delisted ticker)
- Both Coinbase and Binance unavailable causes a service failure response
- Rate limiting or payment failure results in a 402 or 429 response
- Network timeout from the ngrok tunnel may cause intermittent failures

## How this service works

Real-time spot price in US dollars for any major cryptocurrency, including BTC, ETH, SOL and hundreds of others. Returns the current price and the exchange it came from, sourced live from Coinbase with an automatic Binance fallback. Use this when you need a fast, accurate, current price for a crypto asset.

## Output

Returns a JSON object containing the asset symbol (e.g. ETH), the current USD price as a number, the exchange the price was sourced from (e.g. coinbase or binance), and a timestamp of when the price was fetched.

## 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": [
      "symbol"
     ],
     "properties": {
      "symbol": {
       "type": "string",
       "description": "Asset ticker, e.g. BTC, ETH, SOL"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "ts": {
       "type": "string"
      },
      "usd": {
       "type": "number"
      },
      "source": {
       "type": "string"
      },
      "symbol": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/crypto-spot-price-lookup-coinbase-binance-9babedad/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)
