# AVAX to USD Converter (Live Price)

> AVAX to USD Converter (Live Price) 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 Avalanche (AVAX) to its current USD value using a live price feed

## Facts

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

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 avax-to-usd-converter-live-price-b11e34c3
```

Example prompt: How much is 5 AVAX worth in USD right now?

## When to prefer this

Use this endpoint when you need to convert a specific quantity of AVAX (Avalanche) to its current USD value in real time; prefer this over generic crypto APIs when you specifically need AVAX-to-USD conversion with a computable result field for a given amount

## Known failure modes

- Invalid or missing amount parameter returns an error response
- Price feed source unavailable or stale data may cause incorrect results
- Non-numeric amount value causes a parse or validation error
- Network timeout from upstream price provider

## How this service works

Convert AVAX to USD at live price. Pass ?amount=1 for value in US Dollar. 雪崩兑换美元换算。アバランチを米ドルに換算。Convertir Avalanche a dólar. 아발란체를 달러로 환전. avax to usd, Avalanche convert. Accepts payment on Base or Solana — either network works.

## Output

Returns a JSON object with the from/to currency pair, the input amount, the live AVAX price in USD, the computed USD result, the timestamp of the price, and the data source used

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