# ATOM to USD Converter (Live Price)

> ATOM 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 Cosmos (ATOM) cryptocurrency to its current US Dollar equivalent using a live market price

## Facts

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

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 atom-to-usd-converter-live-price-28cd420d
```

Example prompt: What is 50 ATOM worth in US dollars right now?

## When to prefer this

Use this endpoint when you need a quick, live ATOM-to-USD conversion for a specific amount. Ideal for portfolio valuation, payment calculations, or displaying Cosmos token values in US dollar terms. Prefer this over generic crypto APIs when you specifically need ATOM/USD and want a simple, zero-setup GET call.

## Known failure modes

- Invalid or missing amount parameter may return an error or default to amount=1
- Service unavailable if upstream price feed is down
- Stale price if data source has not refreshed recently
- Non-numeric amount value may cause a 400 or unexpected result

## How this service works

Convert ATOM to USD at live price. Pass ?amount=1 for value in US Dollar. Cosmos兑换美元换算。コスモスを米ドルに換算。Convertir Cosmos a dólar. 코스모스를 달러로 환전. atom to usd, Cosmos convert. Accepts payment on Base or Solana — either network works.

## Output

Returns a JSON object with the from currency (ATOM), to currency (USD), the input amount, the converted result in USD, the live price used, the timestamp of the price (as_of), and the data source. For example: {"from":"ATOM","to":"USD","amount":1,"price":8.42,"result":8.42,"as_of":"2024-01-15T12:00:00Z","source":"..."}

## 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/atom-to-usd-converter-live-price-28cd420d/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)
