Bitcoin News API
Curated bitcoin, crypto, and macro headlines.
Fetch the latest Newhedge news feed as JSON. Filter by category or pull everything at once. Responses are ordered by published_at descending. Updates every minute.
Request format
curl -X GET "https://newhedge.io/api/v2/news/:query_type?api_token=YOUR_TOKEN"
:query_type — all, bitcoin, crypto, or macro. Use all for the full feed.
api_token (required) — 24 character token.
200 returns a JSON array of articles sorted by published_at. 400 for invalid query_type, 401 for missing/invalid token or when monthly limits are exceeded.
Latest news
Returns curated articles filtered by category.
https://newhedge.io/api/v2/news/bitcoin?api_token=YOUR_TOKEN
Replace YOUR_TOKEN with your API token. Switch bitcoin with other query types to filter.
[
{
"title": "David Bailey’s Nakamoto bitcoin treasury announces 1-for-40 reverse split as shares hit new lows",
"description": "Nakamoto’s reverse split will shrink outstanding shares to about 17.4 million from roughly 696 million, following a 99.5% price drop.",
"link": "https://www.theblock.co/post/402086/david-bailey-nakamoto-bitcoin-treasury-1-for-40-reverse-split-shares-new-lows?utm_source=rss&utm_medium=rss",
"image_url": null,
"published_at": "2026-05-20 19:22:08 UTC",
"sentiment": "bearish",
"source": "theblock.co",
"category": "bitcoin"
},
{
"title": "More Private Cos. Getting Acquired: Evercore's Kiely",
"description": "Tammy Kiely, senior managing director in technology investment banking at Evercore, and Wally Cheng, head of global technology M&A at Morgan Stanley, join Dani Burger on \"Bloomberg Deals. (Source: Bloomberg)",
"link": "https://www.bloomberg.com/news/videos/2026-05-20/more-private-cos-getting-acquired-evercore-s-kiely-video",
"image_url": null,
"published_at": "2026-05-20 19:21:12 UTC",
"sentiment": "neutral",
"source": "Bloomberg.com",
"category": "macro"
}
]
Response attributes
title — headline of the article.
description — summary text.
link — original URL for the story.
image_url — preview image when available.
published_at — timestamp in ISO8601.
sentiment — one of neutral, bearish, bullish.
source — hostname of the publisher.
category — news grouping, matches :query_type when filtered.