# WebberSites Crypto Converter

> WebberSites Crypto Converter is a paid API for AI agents from api.webbersites.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Converts any cryptocurrency to any other cryptocurrency or fiat currency (and fiat to crypto) using live CoinGecko prices, returning the rate, converted amount, and underlying prices.

## Facts

- Endpoint: GET https://api.webbersites.com/api/convert
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/webbersites-crypto-converter-cad6f8cc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_eZVyLu_2DSGMj2qgfV5su

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 webbersites-crypto-converter-cad6f8cc
```

Example prompt: How much Ethereum would I get for 0.5 Bitcoin right now? Give me the rate and the converted amount using current CoinGecko prices.

## When to prefer this

Use this endpoint when you need a quick, cheap, real-time crypto-to-crypto or crypto-to-fiat (or fiat-to-crypto) conversion with fresh CoinGecko prices and no complex setup. Ideal for looped or frequent conversion lookups given its low per-call cost and 30s cache. Prefer over manual price math or heavier financial data APIs when you just need a rate and converted amount.

## Known failure modes

- Unrecognized coin ID or ticker returns an error (check CoinGecko IDs for obscure coins)
- Unsupported fiat code returns an error
- Missing required 'from' or 'to' query parameters returns a 400-style error
- Very new or delisted coins may not be found in CoinGecko data
- Network/upstream CoinGecko outage may cause stale or failed responses

## How this service works

Live crypto conversion at CoinGecko prices: any coin to any coin or fiat, and fiat to coin. ?amount=0.5&from=bitcoin&to=ethereum — common tickers (btc, eth, sol…) accepted. Returns the rate, the converted amount, and the underlying prices. Prices cached ≤30s; cheap enough to call in a loop.

## Output

Returns a JSON object with: the 'from' currency identifier, the 'to' currency identifier, the exchange rate (from→to), the input amount, the computed result (amount × rate), and a 'prices' object containing the underlying USD-denominated prices for each currency. Prices are cached for at most 30 seconds.

## 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": [
      "from",
      "to"
     ],
     "properties": {
      "to": {
       "type": "string",
       "description": "CoinGecko id/ticker or fiat code"
      },
      "from": {
       "type": "string",
       "description": "CoinGecko id or ticker (bitcoin/btc), or fiat code (usd, eur…)"
      },
      "amount": {
       "type": "number",
       "description": "quantity of 'from' (default 1)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "to": {
       "type": "string"
      },
      "from": {
       "type": "string"
      },
      "rate": {
       "type": "number"
      },
      "amount": {
       "type": "number"
      },
      "prices": {
       "type": "object"
      },
      "result": {
       "type": "number"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "to": "ethereum",
  "from": "bitcoin",
  "rate": 26.4,
  "amount": 0.5,
  "prices": {
   "bitcoin_usd": 60000,
   "ethereum_usd": 2272.7
  },
  "result": 13.2
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/webbersites-crypto-converter-cad6f8cc/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.webbersites.com](https://www.zero.xyz/host/api.webbersites.com/llms.txt)
