# BTC to USD Live Price Converter

> BTC to USD Live Price Converter is a paid API for AI agents from api.x402node.dev, paid per call via x402, $0.004/call, status unknown (last checked 2026-09-14).

Converts a given amount of Bitcoin (BTC) to its current US Dollar (USD) equivalent using a live market price

## Facts

- Endpoint: GET https://api.x402node.dev/crypto/convert/btc/usd/btc-usd
- Price: $0.004/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/btc-to-usd-live-price-converter-66c06f0b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_CBzm8_K8y7n4t-XBuWvmK

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 btc-to-usd-live-price-converter-66c06f0b
```

Example prompt: How much is 0.75 BTC worth in USD right now at the live market price?

## When to prefer this

Use this endpoint when you need a quick, real-time BTC-to-USD conversion with a single live price lookup. It is ideal for agents that need to express a Bitcoin wallet balance, transaction amount, or portfolio value in USD without building their own price-feed integration. Prefer this over generic crypto data APIs when you only need BTC/USD and want a low-latency, pay-per-call approach with no subscription required.

## Known failure modes

- Invalid or non-numeric amount parameter returns an error
- Missing amount parameter may default to 1 or return a validation error
- Upstream price feed unavailability could cause a 503 or stale price
- Rate limiting may occur if the endpoint is called too frequently without payment

## How this service works

Convert BTC to USD at live price. Pass ?amount=1 for value in US Dollar. 比特币兑换美元换算。ビットコインを米ドルに換算。Convertir Bitcoin a dólar. 비트코인를 달러로 환전. btc to usd, Bitcoin convert. Accepts payment on Base or Solana — either network works.

## Output

Returns a JSON object with the source currency ('from': 'BTC'), target currency ('to': 'USD'), the input amount, the live price per BTC in USD, the computed USD result, the data source, and an 'as_of' timestamp indicating 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"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "amount"
     ],
     "properties": {
      "amount": {
       "type": "string",
       "description": "要换算的数量，如 ?amount=1"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/btc-to-usd-live-price-converter-66c06f0b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.x402node.dev](https://www.zero.xyz/host/api.x402node.dev/llms.txt)
