# ETH Spot Price (USD)

> ETH Spot Price (USD) is a paid API for AI agents from agenttoll-pi.vercel.app, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Returns the current spot price of Ethereum (ETH) in USD

## Facts

- Endpoint: GET https://agenttoll-pi.vercel.app/api/price/eth
- 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/eth-spot-price-usd-22316543
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_K-qnzRmsbu2Ovmq61eRPc

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-spot-price-usd-22316543
```

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

## When to prefer this

Choose this endpoint when you need a quick, low-cost ($0.001 per call) real-time ETH/USD spot price lookup without needing historical data, order book depth, or multi-asset aggregation. Ideal for lightweight agents that only need the current Ethereum price.

## Known failure modes

- Upstream price feed unavailable — service may return 5xx error
- Stale price data if provider feed is delayed
- Network timeout on Vercel edge function
- Rate limiting or payment validation failure returning 402

## How this service works

Spot price (USD) for a crypto asset

## Output

Returns a numeric USD spot price for ETH, representing the current market price of one Ethereum token in US dollars.

## 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"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "symbol"
     ],
     "properties": {
      "symbol": {
       "type": "string",
       "description": "Ticker or CoinGecko id"
      }
     }
    },
    "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/eth-spot-price-usd-22316543/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agenttoll-pi.vercel.app](https://www.zero.xyz/host/agenttoll-pi.vercel.app/llms.txt)
