CryptoDay News
News aggregation and sentiment analysis, harvested and analyzed hourly by Qwen 3.5. Designed by @helloluis.
BTC has surged past $81,000 across multiple exchanges, driven by regulatory optimism surrounding the CLARITY Act compromise. Market analysts suggest a paradigm shift where the asset may now function as an inflation hedge rather than reacting negatively to macro signals. Institutional adoption continues to accelerate as Western Union debuts a stablecoin on Solana, while Polygon rolls out private payment features for enterprises. In venture capital news, Haun Ventures secured $1 billion to integrate artificial intelligence capabilities into the crypto ecosystem. Finally, analysts predict positive momentum for ETH, SOL, and DOGE as options desks bid on further price jumps.
Sources
16
Articles
10,933
Social Posts
42
Last Updated
May 5, 07:39 PM
Bitcoin and ethereum prices today, Tuesday, May 5, 2026: Bitcoin back over $80,000, hitting a high last seen in January
Bitcoin has surged past $80,000 on May 5, 2026, reclaiming a price level last seen in January, while Ethereum also sees significant gains.
One bank after another scraps Fed rate-cut forecasts. Bitcoin doesn't care.
Despite major banks revising down their Federal Reserve rate-cut forecasts, Bitcoin prices remain resilient and largely unaffected by the macro shift.
Is the Cryptocurrency Sector Dead?
The Motley Fool explores whether the cryptocurrency sector is facing an existential crisis or if current market conditions suggest otherwise.
Strategy Just Gobbled Up 0.5% of the Bitcoin Supply in 90 Days. Here's What Could Happen Next.
MicroStrategy has aggressively accumulated 0.5% of the total Bitcoin supply over the last 90 days, signaling strong institutional conviction.
Google Stock is JP Morgan’s Top Overall Pick: See New Price Target
JPMorgan identifies Google (Alphabet) as its top stock pick with a new price target, reflecting confidence in the broader tech sector.
Crypto Exchange Bullish Strikes $4.2 Billion Deal for Equiniti to Build Tokenized Securities Infrastructure
Crypto exchange Bullish acquires transfer agent Equiniti in a $4.2 billion deal to build infrastructure for tokenized securities.
Clarity Act Explained: Is It A Good Time To Invest In Crypto?
An analysis of the US Clarity Act and its implications for regulatory clarity, helping investors determine if it is a favorable time to enter the crypto market.
Ripple to Share North Korean Threat Intelligence With Crypto Industry
Ripple is sharing threat intelligence on North Korean hacking tactics with the crypto industry following recent DeFi exploits involving social engineering.
Bitcoin breaks $80,000 as traders rotate into altcoins amid improving market mood
Bitcoin surges past $80,000 while market sentiment improves, prompting traders to rotate capital into altcoins.
Crypto platform Bullish to buy Equiniti for $4.25 billion, building tokenized securities infrastructure
Crypto platform Bullish acquires Equiniti for $4.25 billion to expand its regulated transfer agent capabilities and tokenized securities infrastructure.
GameStop’s $55.5 Billion eBay Bid Puts Its Bitcoin Treasury in the Crosshairs
GameStop's proposed $55.5 billion acquisition of eBay could force the sale of its $368 million Bitcoin treasury, testing corporate crypto holdings under M&A pressure.
SEC Pumps the Brakes on First Prediction-Market ETFs, Delaying 24 Products
The SEC has delayed 24 prediction-market ETF applications from major firms like Roundhill and Bitwise, requesting additional information before approval.
Telegram Replaces TON Foundation as Network’s Driving Force, Token Surges 23%
Telegram assumes direct control of the TON network as its largest validator, causing Toncoin to surge 23% amid a massive spike in trading volume.
Bitcoin tops $80,000 as altcoins rally and risk appetite returns
Bitcoin surpasses $80,000 while altcoins rally as investors return to riskier assets amid improving market sentiment.
This AI data center company now holds 680 Bitcoin worth $53.5M
An AI data center company has increased its Bitcoin holdings to 680 coins, valued at approximately $53.5 million.
Toncoin Top Charts With 23% Daily Rally: Why Is TON Up Today?
Toncoin leads the top 100 cryptocurrencies with a 23% daily rally, signaling strong short-term momentum for TON.
Bitcoin ETFs pull in $532M as BTC reclaims $80K amid ‘post-ceasefire recovery’
Spot Bitcoin ETFs recorded $532 million in inflows as BTC reclaimed $80,000 following a US-Iran ceasefire and improved geopolitical stability.
The Smarter Web Company tops up Bitcoin position, shares gain
The Smarter Web Company has added to its Bitcoin reserves, resulting in gains for its corporate shares.
Hyperliquid takes aim at Kalshi, Polymarket targeting $24bn prediction markets
Hyperliquid and Polymarket are expanding their presence in the prediction market sector, which is projected to reach a $24 billion valuation, signaling strong growth for decentralized betting platforms.
Bitcoin, Ethereum, XRP Prices Rise. Why Oil Will Still Hold Cryptos Back.
Bitcoin, Ethereum, and XRP prices are rising, but analysts warn that high oil prices may continue to act as a headwind for the broader crypto market.
Sources
API Access
Returns the 10 most recent analyzed articles. Free and unauthenticated.
curl https://news.cryptoday.live/api/feedFull 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)Returns articles from your registered custom searches only. Results are private to your API key.
curl -H "x-api-key: YOUR_KEY" \
"https://news.cryptoday.live/api/feed?scope=custom"Custom Searches
Register up to 20 custom search terms per API key. Results are harvested every 4 hours from Google News and GlobeNewsWire.
List all your registered searches.
curl -H "x-api-key: YOUR_KEY" \
https://news.cryptoday.live/api/searchesRegister a new search term. Google News queries support Boolean operators (AND, OR, quotes, parentheses).
curl -X POST -H "x-api-key: YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"query": "solana AND defi", "provider": "google"}' \
https://news.cryptoday.live/api/searchesBody Fields
querySearch term (required, max 200 chars)provider"google", "gnw", or "both" (default: "google")Update a search's query, provider, or active status.
curl -X PATCH -H "x-api-key: YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"id": "search-uuid", "active": false}' \
https://news.cryptoday.live/api/searchesBody Fields
idSearch ID (required)queryNew search term (optional)providerNew provider (optional)activetrue/false to enable/disable (optional)Remove a registered search.
curl -X DELETE -H "x-api-key: YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"id": "search-uuid"}' \
https://news.cryptoday.live/api/searchesResponse 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
}
}