# ETH Price Quote

> ETH Price Quote is a paid API for AI agents from www.x402financialdata.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Returns the current Ethereum price in USD and BTC via Etherscan's V2 API as a fast single-value price check.

## Facts

- Endpoint: GET https://www.x402financialdata.com/eth-price
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/eth-price-quote-29b546eb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_U1N0rOsLUkfBE0HZlP1jl

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-price-quote-29b546eb
```

Example prompt: What's the current price of ETH in USD and BTC right now?

## When to prefer this

Choose this endpoint when you need a fast, lightweight ETH price snapshot in USD and BTC with minimal overhead. It is ideal for quick checks, triggering price alerts, or enriching transaction data with current ETH value. If you need market cap, volume, or supply data, use /crypto-prices instead. At $0.005/call, it is cost-effective for high-frequency price polling.

## Known failure modes

- Unsupported chain parameter (only 'eth' is supported) returns an error
- Etherscan upstream API unavailability may cause request failure or stale data
- Payment failure (insufficient USDC balance or x402 protocol error) results in 402 response
- Network timeout if Etherscan V2 is slow to respond

## How this service works

Current ETH price in USD and BTC, from Etherscan's V2 API. A quick single-value price check -- for market cap/volume/supply detail use /crypto-prices instead. Not address-specific. $0.005/call.

## Output

Returns the current ETH price as a single snapshot: ETH/USD and ETH/BTC values sourced from Etherscan's V2 API. Does not include market cap, volume, or circulating supply — for those use the /crypto-prices endpoint instead.

## 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": [],
     "properties": {
      "chain": {
       "enum": [
        "eth"
       ],
       "type": "string",
       "description": "Which chain to query. Only 'eth' is supported right now."
      }
     }
    }
   },
   "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-price-quote-29b546eb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.x402financialdata.com](https://www.zero.xyz/host/www.x402financialdata.com/llms.txt)
