# ETH to USD Converter (x402node)

> ETH to USD Converter (x402node) is a paid API for AI agents from api.x402node.dev, paid per call via x402, $0.004/call, status unknown (last checked 2026-09-14).

Converts a specified amount of Ethereum (ETH) to US Dollars (USD) at the current live market price.

## Facts

- Endpoint: GET https://api.x402node.dev/crypto/convert/eth/usd/eth-usd
- Price: $0.004/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/eth-to-usd-converter-x402node-13f49ec7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Uoy0yFYSs_nG4b4EBt29k

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-to-usd-converter-x402node-13f49ec7
```

Example prompt: What's 2.5 ETH worth in US dollars right now — can you give me the live conversion?

## When to prefer this

Use this endpoint when you need a live ETH-to-USD price conversion with a specific amount and want a structured response including the rate, result, timestamp, and source. It is purpose-built for ETH/USD and simpler to call than a generic multi-currency forex endpoint when only Ethereum conversion is needed.

## Known failure modes

- Invalid or non-numeric amount parameter returns an error
- Upstream price feed unavailable causes stale or missing data
- Rate limiting if called too frequently
- Payment failure ($0.004 USDC) blocks the request

## How this service works

Convert ETH to USD at live price. Pass ?amount=1 for value in US Dollar. 以太坊兑换美元换算。イーサリアムを米ドルに換算。Convertir Ethereum a dólar. 이더리움를 달러로 환전. eth to usd, Ethereum convert. Accepts payment on Base or Solana — either network works.

## Output

Returns a JSON object with the from currency (ETH), to currency (USD), the input amount, the current ETH/USD price, the calculated USD result, the timestamp of the price (as_of), and the data source used for the rate.

## 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": [
      "amount"
     ],
     "properties": {
      "amount": {
       "type": "string",
       "description": "要换算的数量，如 ?amount=1"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/eth-to-usd-converter-x402node-13f49ec7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.x402node.dev](https://www.zero.xyz/host/api.x402node.dev/llms.txt)
