# ETH-USD Spot Price (Delayed) via Yahoo Finance

> ETH-USD Spot Price (Delayed) via Yahoo Finance is a paid API for AI agents from finance-api.kdlcfa.workers.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns the current delayed Ethereum (ETH-USD) spot price in USD, sourced from Yahoo Finance

## Facts

- Endpoint: GET https://finance-api.kdlcfa.workers.dev/eth-price
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/eth-usd-spot-price-delayed-via-yahoo-finance-e13c6c0b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_blBompx7RdRIs3uU50IUF

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 eth-usd-spot-price-delayed-via-yahoo-finance-e13c6c0b
```

Example prompt: What's the current Ethereum price in USD? Pull the latest delayed spot quote for ETH.

## When to prefer this

Use this endpoint when you need a quick, low-cost delayed ETH-USD price lookup without setting up a full crypto data provider integration. Ideal for lightweight agents that need a spot reference price for Ethereum and already operate in the x402 micropayment ecosystem. Not suited for real-time trading or when historical OHLCV data is needed.

## Known failure modes

- Yahoo Finance upstream outage or rate limiting causing stale or unavailable data
- Cloudflare Worker cold start or timeout returning a 5xx error
- Payment not accepted or x402 challenge not resolved, blocking access
- Malformed response if Yahoo Finance changes its data format

## How this service works

Ethereum (ETH-USD) spot price, delayed, via Yahoo Finance

## Output

A delayed spot price quote for Ethereum (ETH-USD) in USD, sourced from Yahoo Finance. Typically includes the current price and possibly supporting quote metadata such as change, percentage change, or timestamp depending on what Yahoo Finance returns.

## 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": [],
     "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/eth-usd-spot-price-delayed-via-yahoo-finance-e13c6c0b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from finance-api.kdlcfa.workers.dev](https://www.zero.xyz/host/finance-api.kdlcfa.workers.dev/llms.txt)
