# WebberSites Crypto Spot Price API

> WebberSites Crypto Spot 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 spot price and 24-hour percent change for any cryptocurrency by its CoinGecko asset ID

## Facts

- Endpoint: GET https://api.webbersites.com/api/price/:coin
- 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-spot-price-api-8c274cd9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_I1Fh8OhE802_4a_vjueIw

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-spot-price-api-8c274cd9
```

Example prompt: What's the current USD price of Solana and how much has it moved in the last 24 hours?

## When to prefer this

Choose this endpoint when you need a fast, cheap ($0.001/call) single-asset USD price lookup with 24-hour change data using a CoinGecko asset ID. Ideal for trading bots, price alert systems, and analytics dashboards that need high-volume, low-cost spot price checks without a full exchange API integration.

## Known failure modes

- Invalid or unknown CoinGecko ID returns an error or empty result
- Network timeout if CoinGecko upstream is slow or unavailable
- Rate limiting if call volume exceeds plan limits
- Stale price if CoinGecko data feed is delayed

## How this service works

Current USD spot price and 24-hour percent change for any crypto asset by CoinGecko id. Cheap, high-volume price lookups for trading and analytics agents.

## Output

A JSON object containing the coin's CoinGecko ID, its current USD spot price as a number, the 24-hour percent change as a decimal number, and a timestamp of when the data 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"
    },
    "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"
      }
     }
    }
   }
  }
 }
}
```

## More

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