# CCN Crypto Currency Network Premium News Feed

> CCN Crypto Currency Network Premium News Feed is a paid API for AI agents from crypto-currency-network.net, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Returns a live premium crypto news feed including latest articles, live BTC price, and live ETH price via a paid API call.

## Facts

- Endpoint: POST https://crypto-currency-network.net/api/ccn/pay
- 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/ccn-crypto-currency-network-premium-news-feed-30ce7933
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_KTgMO9ecjrKwa05kkXKqA

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 ccn-crypto-currency-network-premium-news-feed-30ce7933 -d '<json body>'
```

Example prompt: Pull the latest crypto news and live BTC and ETH prices from the CCN premium feed right now.

## When to prefer this

Choose this endpoint when you need a combined real-time crypto news feed plus live BTC and ETH spot prices in a single call, particularly when integrating crypto market context into an agent workflow or newsletter and willing to pay a micro-fee per request.

## Known failure modes

- Payment failure or insufficient funds returns an error instead of data
- Stale or unavailable news articles if upstream feed is down
- Missing or null price fields if live price source is temporarily unreachable
- Invalid or malformed request body may return an error response

## How this service works

CCN — Crypto Currency Network Premium News Feed

## Output

Returns a JSON object with a status field ('ok'), an array of latest crypto news articles, the live BTC price in USD, and the live ETH price in USD.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "status": {
   "type": "string",
   "description": "ok"
  },
  "articles": {
   "type": "array",
   "description": "Latest articles"
  },
  "btc_price": {
   "type": "number",
   "description": "Live BTC price USD"
  },
  "eth_price": {
   "type": "number",
   "description": "Live ETH price USD"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ccn-crypto-currency-network-premium-news-feed-30ce7933/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from crypto-currency-network.net](https://www.zero.xyz/host/crypto-currency-network.net/llms.txt)
