Live Feed

CryptoDay News

AI-powered crypto news aggregation and sentiment analysis. 14 sources harvested hourly, analyzed by Qwen 3.5 Plus for sentiment scoring and categorization.

Sources

14

Articles

203

Analyzed

151

Last Updated

Mar 6, 11:40 AM

Sample Feed

Latest 10 articles from the free unauthenticated JSON feed.

Vancouver Moves to Close Bitcoin Reserve Proposal After Legal Review

Vancouver staff concluded municipal law bars holding Bitcoin in city reserves, shutting down a year-long proposal to become a Bitcoin-friendly city.

Decrypt27m ago
BTC-0.30

Dems plan bill to curb prediction markets after ‘very specific’ Iran strike bets

US Democrats plan legislation to restrict prediction markets amid concerns over insider trading on geopolitical events. Senator Chris Murphy alleges individuals close to Donald Trump used inside information to bet on US Iran strikes.

Cointelegraph37m ago
REG-0.60

Crypto Exchange OKX Debuts Social Platform Linking Posts to Trades

OKX has launched Orbit, a social platform that links trading activity with social posts to promote transparency and reward user engagement.

Decrypt1h ago
ALL+0.40

OKX is building a social network directly into its trading app after massive $25 billion valuation

OKX is integrating a social network into its trading app following a $25 billion valuation by Intercontinental Exchange. This strategy aims to unify trading, community engagement, and market data within a single platform.

CoinDesk1h ago
ALL+0.60

NYSE Parent ICE Invests in OKX at $25B Valuation; to Launch Tokenized Equities

ICE, the parent company of the New York Stock Exchange, is investing in crypto exchange OKX at a $25 billion valuation and securing a board seat. The partnership aims to launch tokenized equities, signaling significant institutional adoption in the crypto sector.

BitPinas2h ago
ALL+0.85

Construction begins at quantum facility big enough to break Bitcoin

PsiQuantum has commenced construction on a quantum facility capable of breaking Bitcoin's cryptography, though the company claims it has no intention of attacking the network.

Cointelegraph2h ago
BTC-0.30

Base Opens Applications for ‘Batches 03’ Accelerator; Offers Coinbase Ventures Funding and San Francisco Demo Day

Base has opened applications for its third accelerator batch, providing selected teams with Coinbase Ventures funding and exposure at a San Francisco Demo Day. This program seeks to drive development and adoption within the Base ecosystem.

BitPinas4h ago
ALL+0.50

Nvidia Is Probably Done Investing in OpenAI and Anthropic, Says CEO—Why?

Nvidia CEO Jensen Huang states the company will likely stop investing in AI labs like OpenAI and Anthropic due to upcoming IPOs, amidst ongoing controversies surrounding the firms.

Decrypt5h ago
ALL0.00

SEC ends case against Justin Sun with $10M settlement

The SEC has concluded its fraud lawsuit against Justin Sun with a $10 million settlement, removing significant legal uncertainty for the TRON ecosystem. This resolution clears a major regulatory overhang despite the underlying allegations of securities violations.

Cointelegraph5h ago
TRX+0.30

The WSJ Dollar Index Rises 0.29% to 95.86

The WSJ Dollar Index increased to 95.86 driven by rising oil prices from Middle East tensions improving U.S. terms of trade. A strengthening dollar typically creates headwinds for risk assets including the broader cryptocurrency market.

Yahoo Finance Crypto5h ago
ALL-0.30

API Access

GET/api/feedNo auth required

Returns the 10 most recent analyzed articles. Free and unauthenticated.

curl https://news.cryptoday.live/api/feed
GET/api/feedAPI key required

Full paginated feed with filtering. Pass your API key via the x-api-key header.

curl -H "x-api-key: YOUR_KEY" \ "https://news.cryptoday.live/api/feed?category=BTC&page=1"

Query Parameters

categoryFilter by category (BTC, ETH, SOL, ALL, DEFI, NFT, REG, ...)
sourceFilter by source slug (coindesk, cointelegraph, decrypt, ...)
pagePage number for pagination (default: 1)

Response Format

{
  "articles": [
    {
      "id": "uuid",
      "title": "Article title",
      "url": "https://...",
      "source": "CoinDesk",
      "sourceSlug": "coindesk",
      "publishedAt": "2026-03-06T12:00:00.000Z",
      "summary": "AI-generated 1-2 sentence summary",
      "category": "BTC",
      "sentimentScore": 0.65,
      "sentimentLabel": "bullish"
    }
  ],
  "meta": {
    "total": 1234,
    "page": 1,
    "limit": 50,
    "authenticated": true
  }
}