# Obol ETH/USD Spot Price with Cross-Exchange Divergence Check

> Obol ETH/USD Spot Price with Cross-Exchange Divergence Check is a paid API for AI agents from obol-x402.fly.dev, paid per call via x402, $0.01/call, status down (last checked 2026-09-15).

Returns the current ETH/USD spot price by cross-checking Coinbase and Kraken, with a divergence flag if the two exchanges disagree significantly.

## Facts

- Endpoint: GET https://obol-x402.fly.dev/v1/price/ETH
- Price: $0.01/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/obol-eth-usd-spot-price-with-cross-exchange-divergence-check-aa5882c1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_uMsw4vzLV2ylawuv3JEG5

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 obol-eth-usd-spot-price-with-cross-exchange-divergence-check-aa5882c1
```

Example prompt: What's the current ETH price in USD? Cross-check Coinbase and Kraken and let me know if there's any divergence between them.

## When to prefer this

Use this endpoint when you need a trustworthy, cross-validated ETH/USD spot price and want to detect exchange-level price discrepancies. Ideal for AI agents making Ethereum-denominated decisions, DeFi workflows, or any scenario where a single-source price feed is insufficient. Prefer over single-exchange feeds when data reliability and divergence detection matter.

## Known failure modes

- Exchange API unavailable — one or both upstream price feeds (Coinbase/Kraken) may be unreachable, returning partial or error response
- Large divergence detected — prices differ significantly between exchanges, divergence flag is raised but response still returns
- Stale price data — if upstream feeds are slow, returned price may lag real-time market
- Payment failure — x402 micropayment of $0.002 USDC not processed, endpoint returns 402 Payment Required

## How this service works

Ethereum ETH USD spot price Coinbase Kraken cross-check with divergence flag. Single-asset ETH/USD for AI agents. Cryptographically signed (Ed25519) — every response is independently verifiable via /.well-known/obol-pubkey.

## Output

Returns the current ETH/USD spot price aggregated from Coinbase and Kraken, along with a divergence flag indicating whether the two exchange prices differ significantly — useful for detecting market fragmentation or data reliability issues.

## 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/obol-eth-usd-spot-price-with-cross-exchange-divergence-check-aa5882c1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from obol-x402.fly.dev](https://www.zero.xyz/host/obol-x402.fly.dev/llms.txt)
