# PEPE to USD Converter

> PEPE to USD 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 PEPE (Pepecoin) to its equivalent value in US Dollars using live market prices

## Facts

- Endpoint: GET https://api.x402node.dev/crypto/convert/pepe/usd/pepe-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/pepe-to-usd-converter-a6af5b88
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4O8DSKLxBVC0ZKzlTpxef

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 pepe-to-usd-converter-a6af5b88
```

Example prompt: How much are 5 million PEPE coins worth in US dollars right now?

## When to prefer this

Use this endpoint when you need a live, on-demand PEPE-to-USD conversion with a specific quantity — especially useful when a user asks for the dollar value of a particular PEPE token holding. Prefer this over generic crypto APIs when you need a simple, low-latency single-pair conversion with a straightforward JSON response.

## Known failure modes

- Invalid or missing amount parameter returns an error
- Price data feed unavailable causes failure to return live rate
- Extremely small amounts may result in sub-cent result values
- Network or upstream provider outage may cause timeout or stale data
- Payment of $0.004 USDC required per call; missing payment returns 402

## How this service works

Convert PEPE to USD at live price. Pass ?amount=1 for value in US Dollar. 佩佩币兑换美元换算。ペペを米ドルに換算。Convertir Pepe a dólar. 페페를 달러로 환전. pepe to usd, Pepe convert. Accepts payment on Base or Solana — either network works.

## Output

Returns a JSON object with the from/to currency pair, the amount queried, the current PEPE price in USD, the computed result (amount × price), the timestamp the price was fetched (as_of), 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/pepe-to-usd-converter-a6af5b88/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)
