# DOGE to USD Live Price Converter

> DOGE 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 given amount of Dogecoin (DOGE) to US Dollars using the current live market price

## Facts

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

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 doge-to-usd-live-price-converter-10464b10
```

Example prompt: How much is 250 DOGE worth in US dollars right now at the live market price?

## When to prefer this

Choose this endpoint when you need a quick, single-call DOGE-to-USD conversion at live market price without managing exchange API keys or building your own price feed integration. Ideal for agents that need to express a DOGE wallet balance or transaction in USD for display or decision-making purposes.

## Known failure modes

- Invalid or missing amount parameter returns an error
- Price feed temporarily unavailable causes a service error
- Non-numeric amount value results in a bad request response
- Network or upstream data source outage leads to timeout or 5xx error

## How this service works

Convert DOGE to USD at live price. Pass ?amount=1 for value in US Dollar. 狗狗币兑换美元换算。ドージコインを米ドルに換算。Convertir Dogecoin a dólar. 도지코인를 달러로 환전. doge to usd, Dogecoin convert.

## Output

Returns a JSON object with the from/to currency pair, the amount of DOGE input, the live DOGE/USD price, the computed USD result, the timestamp of the price quote, and the data source used for the conversion.

## 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/doge-to-usd-live-price-converter-10464b10/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)
