CCN — Crypto Currency Network Premium News Feed
CCN — Crypto Currency Network Premium News Feed
1000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-10
updated
Provider
crypto-currency-network.net · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x367F1b3D8Ca90D1e087481a9A40d585Bf3451a03",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "1000",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"payTo": "6aCEuwH3PYx99cEmRz45otfxk39uF7ewGhqmvxfXisSG",
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"amount": "1000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"category": "News & Data",
"info": {
"description": "Crypto Currency Network (CCN) is an AI-powered crypto news and market intelligence platform. Pay $0.001 USDC for access to: live BTC/ETH prices, breaking DeFi news, sentiment analysis, top yield opportunities, and AI agent economy reporting. Aggregated from CoinDesk, CoinTelegraph, Decrypt, and The Block in real time.",
"input": {
"method": "POST",
"type": "http"
},
"inputSchema": {
"properties": {
"limit": {
"description": "Number of articles (default: 10, max: 50)",
"type": "integer"
},
"topic": {
"description": "Topic filter: bitcoin, ethereum, defi, ai-agents, x402",
"type": "string"
}
},
"required": [],
"type": "object"
},
"name": "CCN — Crypto Currency Network News",
"output": {
"example": {
"articles": 10,
"btc_price": 68420.5,
"eth_price": 3812.25,
"sentiment": "bullish",
"status": "ok",
"top_story": "AI Agents Drive $2M in On-Chain Volume",
"top_yield": "12.4% APY on Aave V3 USDC"
}
},
"outputSchema": {
"properties": {
"articles": {
"description": "Latest articles",
"type": "array"
},
"btc_price": {
"description": "Live BTC price in USD",
"type": "number"
},
"eth_price": {
"description": "Live ETH price in USD",
"type": "number"
},
"status": {
"description": "ok",
"type": "string"
}
},
"required": [
"status"
],
"type": "object"
},
"tags": [
"crypto",
"news",
"bitcoin",
"ethereum",
"defi",
"sentiment",
"x402"
]
},
"networks": [
"Base"
],
"provider": "Crypto Currency Network",
"providerUrl": "https://crypto-currency-network.net",
"schema": {
"properties": {
"articles": {
"description": "Latest articles",
"type": "array"
},
"btc_price": {
"description": "Live BTC price USD",
"type": "number"
},
"eth_price": {
"description": "Live ETH price USD",
"type": "number"
},
"status": {
"description": "ok",
"type": "string"
}
},
"type": "object"
},
"tags": [
"crypto",
"news",
"bitcoin",
"ethereum",
"defi",
"ai-agents",
"x402",
"sentiment"
]
}
}Use it
curl
curl "https://crypto-currency-network.net/api/ccn/pay" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://crypto-currency-network.net/api/ccn/pay");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://crypto-currency-network.net/api/ccn/pay")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/15631.json, and this resource appears in /discovery/resources and /discovery/search.