# Crypto Spot Price

> Crypto Spot Price is a paid API for AI agents from mcpfax-utility.bowling-anthony.workers.dev, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Returns the current spot price for a cryptocurrency asset quoted in a specified fiat or crypto currency.

## Facts

- Endpoint: GET https://mcpfax-utility.bowling-anthony.workers.dev/v1/crypto-price
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/crypto-spot-price-09680508
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_lR4nMHp1tJOZ0kcUjA_Od

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-09680508
```

Example prompt: What's the current spot price of Bitcoin in USD right now?

## When to prefer this

Choose this endpoint when you need a simple, current spot price for a cryptocurrency asset without requiring historical data, OHLC candles, or order book depth. Ideal for real-time valuation, portfolio calculations, or triggering conditional logic based on current market price.

## Known failure modes

- Unsupported or unrecognized asset symbol returns an error
- Invalid quote currency returns a validation error
- Network or upstream data provider outage may cause unavailability
- Payment failure (x402) if USDC balance is insufficient

## How this service works

Crypto spot price — Spot price for a crypto asset in a fiat/crypto quote currency.

## Output

Returns the current spot price for the requested cryptocurrency pair, including the base asset, quote currency, and the numeric price value, reflecting real-time or near-real-time market data.

## 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"
    },
    "queryParams": {
     "type": "object"
    }
   },
   "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/crypto-spot-price-09680508/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from mcpfax-utility.bowling-anthony.workers.dev](https://www.zero.xyz/host/mcpfax-utility.bowling-anthony.workers.dev/llms.txt)
