# Carbon Cashmere Crypto Price Feed

> Carbon Cashmere Crypto Price Feed is a paid API for AI agents from api.carbon-cashmere.de, paid per call via x402, $0.003/call, status down (last checked 2026-09-14).

Returns real-time prices for 116 cryptocurrencies including 1h/24h/7d percent changes, volume, and market cap, refreshed every 60 seconds via CoinGecko.

## Facts

- Endpoint: GET https://api.carbon-cashmere.de/v1/prices
- Price: $0.003/call
- Payment: x402
- Status: down
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-carbon-cashmere-de-8733b708
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zOljv6930hT9hTai_e-nF

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 api-carbon-cashmere-de-8733b708
```

Example prompt: Pull the latest prices for all 116 cryptocurrencies from Carbon Cashmere — I need each coin's current price plus the 1h, 24h, and 7d percent changes, volume, and market cap.

## When to prefer this

Choose this endpoint when you need a broad, real-time snapshot of up to 116 cryptocurrencies in a single call, including short and medium-term price change percentages and market metrics. Prefer it over exchange-specific APIs when you need aggregated market data rather than order book depth or trade execution. Ideal for dashboards, portfolio tracking, or any workflow needing current market conditions across a wide range of coins at low cost per call.

## Known failure modes

- Rate limit exceeded — HTTP 429 if too many requests
- Payment not included or invalid — HTTP 402 if x402 payment header is missing or insufficient
- Upstream CoinGecko outage may cause stale or missing data
- Network timeout if the CoinGecko data refresh is in progress

## How this service works

Real-time prices for 116 cryptocurrencies with 1h/24h/7d changes, volume, and market cap. Updated every 60 seconds via CoinGecko.

## Output

A JSON payload containing up to 116 cryptocurrency entries, each with current price, percentage change over 1 hour, 24 hours, and 7 days, trading volume, and market cap. Data is sourced from CoinGecko and refreshed every 60 seconds.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "coin"
 ],
 "properties": {
  "coin": {
   "type": "string",
   "title": "Coin"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-carbon-cashmere-de-8733b708/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.carbon-cashmere.de](https://www.zero.xyz/host/api.carbon-cashmere.de/llms.txt)
