# ETC to USD Live Price Converter

> ETC to USD Live Price Converter 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 Classic (ETC) to its current USD value using a live exchange rate

## Facts

- Endpoint: GET https://api.x402node.dev/crypto/convert/etc/usd/etc-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/etc-to-usd-live-price-converter-bc9234b2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cLeImc84qHhDv5ziTPBEa

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 etc-to-usd-live-price-converter-bc9234b2
```

Example prompt: How much is 2.5 ETC worth in US dollars right now?

## When to prefer this

Use this endpoint when you need to convert a specific quantity of Ethereum Classic (ETC) to USD in real time. Prefer this over generic crypto APIs when ETC-specific conversion is needed and low-cost per-call pricing is acceptable.

## Known failure modes

- Missing or invalid 'amount' query parameter returns an error
- Non-numeric amount value causes a bad request response
- Upstream price feed unavailable causes a 503 or error response
- Zero or negative amount may return an error or zero value

## How this service works

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

## Output

Returns the current USD equivalent of the specified ETC amount based on the live Ethereum Classic market price, expressed as a dollar value

## 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/etc-to-usd-live-price-converter-bc9234b2/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)
