# gold-sap.com Crypto Price Lookup

> gold-sap.com Crypto Price Lookup is a paid API for AI agents from gold-sap.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Fetches live cryptocurrency prices for a given symbol from aggregated Binance, OKX, and Coinbase exchange feeds

## Facts

- Endpoint: GET https://gold-sap.com/api/v1/crypto/price
- 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/gold-sap-com-crypto-price-lookup-cb698368
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__onjb2zL3FllxN7FczUtw

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 gold-sap-com-crypto-price-lookup-cb698368
```

Example prompt: What's the current live price of BTC right now, pulling from multiple exchanges like Binance and Coinbase?

## When to prefer this

Choose this endpoint when you need real-time cryptocurrency prices aggregated from multiple top-tier exchanges (Binance, OKX, Coinbase) for a single symbol. Prefer it over single-exchange APIs when cross-exchange price consistency matters, or when you need BTC, ETH, or popular altcoin rates instantly at very low cost ($0.001 per call).

## Known failure modes

- Invalid or unsupported symbol returns an error or empty result
- Network timeout if upstream exchange feeds are unavailable
- Rate limiting if too many requests are made in rapid succession
- Symbol not listed on any of the three exchanges returns no price data

## How this service works

Live crypto prices from Binance, OKX and Coinbase — get the latest BTC, ETH and altcoin rates

## Output

Returns the current market price for the requested cryptocurrency symbol, aggregated from Binance, OKX, and Coinbase exchange feeds, typically including the price value and relevant metadata such as the symbol and possibly the source exchange or timestamp.

## 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",
     "required": [
      "symbol"
     ],
     "properties": {
      "symbol": {
       "type": "string"
      }
     }
    }
   },
   "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/gold-sap-com-crypto-price-lookup-cb698368/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from gold-sap.com](https://www.zero.xyz/host/gold-sap.com/llms.txt)
