# SHIB to USD Converter (Live Price)

> SHIB 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 Shiba Inu (SHIB) to US Dollars at the current live market price

## Facts

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

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 shib-to-usd-converter-live-price-7dd95894
```

Example prompt: How much is 5,000,000 SHIB worth in US dollars right now?

## When to prefer this

Use this endpoint when you need to convert a specific quantity of SHIB tokens into their current USD equivalent, especially in automated workflows that require live pricing with a structured JSON response including timestamp and source metadata.

## Known failure modes

- Invalid or missing amount parameter returns an error or unexpected result
- Price feed unavailable causes stale or missing price data
- Extremely small SHIB values may result in a USD result of 0.00 due to rounding
- Network or upstream data source outage returns a 5xx error

## How this service works

Convert SHIB to USD at live price. Pass ?amount=1 for value in US Dollar. 柴犬币兑换美元换算。柴犬コインを米ドルに換算。Convertir Shiba Inu a dólar. 시바이누를 달러로 환전. shib to usd, Shiba Inu convert. Accepts payment on Base or Solana — either network works.

## Output

Returns a JSON object with the source currency (SHIB), target currency (USD), the live unit price of SHIB in USD, the input amount, the calculated USD result, the data source, and an as_of timestamp indicating when the price was fetched.

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