# WebberSites Crypto Price API

> WebberSites Crypto Price API 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-15).

Returns the current USD price and 24-hour percentage change for a given cryptocurrency by CoinGecko asset ID

## Facts

- Endpoint: GET https://api.webbersites.com/api/price/%7Bcoin%7D
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/webbersites-crypto-price-api-ba7c6479
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_YeRxIcfvzK3BDj9-wGjqG

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-price-api-ba7c6479
```

Example prompt: What's the current USD price of Ethereum and how much has it moved in the last 24 hours? Use the CoinGecko ID 'ethereum'.

## When to prefer this

Use this endpoint when you need a quick, low-cost per-call cryptocurrency price lookup by CoinGecko asset ID and want both the current USD price and 24-hour change in a single call. Prefer it for lightweight agent workflows that don't require full OHLCV data or historical series — it's ideal for portfolio snapshots, price alerts, or enriching financial reports.

## Known failure modes

- Invalid or unrecognized CoinGecko asset ID returns an error or empty response
- CoinGecko upstream unavailability may cause stale or failed responses
- Missing required 'coin' query parameter results in a 400-level error
- Rate limits or payment failures via x402 protocol block the request

## How this service works

WebberSites – Branding, Web Design, Photography, Marketing Strategy - Youngstown Ohio

## Output

A JSON object containing the coin's CoinGecko ID, current USD price, 24-hour percentage change, and a timestamp of when the data was retrieved.

## 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"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "coin"
     ],
     "properties": {
      "coin": {
       "type": "string",
       "description": "CoinGecko asset id, e.g. bitcoin, ethereum, solana"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "ts": {
       "type": "string"
      },
      "usd": {
       "type": "number"
      },
      "coin": {
       "type": "string"
      },
      "change_24h_pct": {
       "type": "number"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ts": "2026-06-27T00:00:00.000Z",
  "usd": 60000,
  "coin": "bitcoin",
  "change_24h_pct": 1.5
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/webbersites-crypto-price-api-ba7c6479/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)
