# Bitcoin Spot Price USD Feed

> Bitcoin Spot Price USD Feed is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Returns the current Bitcoin (BTC) spot price in USD as a pay-per-call data feed for AI agents.

## Facts

- Endpoint: GET https://proxy.suverse.io/v1/proxy/reskey_1166628d/bazaar-test
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/proxy-suverse-io-4fa470c2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qdbu3StoTp2lQ5ES6FESI

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 proxy-suverse-io-4fa470c2
```

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

## When to prefer this

Choose this endpoint when you need a simple, pay-per-call BTC/USD spot price with no subscription required — ideal for AI agents, trading bots, or automation workflows that need occasional or event-driven Bitcoin price checks without committing to a subscription API.

## Known failure modes

- Payment not included or invalid USDC payment results in 402 Payment Required
- Network or upstream price source unavailable returns 5xx error
- Malformed request method (non-GET) returns 400 or 405 error

## How this service works

Bitcoin spot price in USD. Pay-per-call $0.001 USDC. AI agent BTC price feed.

## Output

Returns the current Bitcoin (BTC) spot price denominated in USD, suitable for use in trading bots, portfolio trackers, payment calculators, or any AI agent workflow that needs a live BTC price reference.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {}
 }
}
```

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "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/proxy-suverse-io-4fa470c2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
