CG

Crypto News

Updated May 29, 2026, 12:30 PM

Crypto News

Crypto News

Real-time AI-curated cryptocurrency and blockchain news powered by the Nova AI engine. Access 24 categories, filter by 50+ blockchains and 30+ tokens, and consume via REST API or free RSS feeds.

Key Facts

EndpointGET /news
Cost1 credit per 10 records
SDK@chaingpt/ainews
Categories24
Blockchain Filters50+
Token Filters30+
RSSFree (no credits required)

RSS Feeds

Free RSS feeds are available without API authentication:

FeedURL
All newshttps://app.chaingpt.org/rssfeeds.xml
Bitcoinhttps://app.chaingpt.org/rssfeeds-bitcoin.xml
BNBhttps://app.chaingpt.org/rssfeeds-bnb.xml
Ethereumhttps://app.chaingpt.org/rssfeeds-ethereum.xml

Quick Start -- JavaScript

npm install @chaingpt/ainews

Fetch Latest News

import { AiNews } from "@chaingpt/ainews";

const client = new AiNews({
  apiKey: process.env.CHAINGPT_API_KEY,
});

const news = await client.getNews({
  limit: 10,
});

for (const article of news.data) {
  console.log(`[${article.category}] ${article.title}`);
  console.log(`  ${article.summary}`);
  console.log(`  ${article.url}\n`);
}

Filter by Category

const defiNews = await client.getNews({
  category: "DeFi",
  limit: 5,
});

for (const article of defiNews.data) {
  console.log(`${article.title} - ${article.publishedAt}`);
}

Filter by Blockchain and Token

const ethNews = await client.getNews({
  blockchain: "Ethereum",
  token: "ETH",
  limit: 10,
});

for (const article of ethNews.data) {
  console.log(`${article.title}`);
  console.log(`  Summary: ${article.summary}\n`);
}

Categories

The Nova AI engine classifies articles into 24 categories including (but not limited to):

  • DeFi
  • NFT
  • Layer 1 / Layer 2
  • Regulation
  • Exchange
  • Mining
  • GameFi
  • Metaverse
  • Security
  • Stablecoin

See the reference/ docs for the complete category list.

Tips

  • Use the free RSS feeds for simple integrations that do not need filtering or pagination -- no API key or credits required.
  • At 1 credit per 10 records, the news endpoint is cost-effective for bulk retrieval.
  • Combine with the Web3 AI Chatbot by injecting news articles via contextInjection to get AI-analyzed market summaries.
  • Feed news into AgenticOS to power autonomous X/Twitter bots with timely, relevant content.
  • Use blockchain and token filters together for highly targeted feeds (e.g., Ethereum DeFi news only).
View original source