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": "A Treasure Hunter Pulled Up the Floorboards of an Old House and Found $46,000 in Cash From the 1950s",
"description": "Keith Wille, a Groton, Connecticut metal detectorist, was hired by a Western Massachusetts family that felt stuck with a 1950s-built house because of a decades-old legend about hidden cash. After carpenters tore through walls and floors and came up empty, Wille swept the attic and got metal pings from the floorboards, leading to a dust-covered […]",
"link": "https://news.bitcoin.com/featured/a-treasure-hunter-pulled-up-the-floorboards-of-an-old-house-and-found-46000-in-cash-from-the-1950s-49201/",
"image_url": "https://static.news.bitcoin.com/wp-content/uploads/2026/08/a-treasure-hunter-pulled-up-the-floorboards-of-an-old-house-and-found-46000-in-cash-from-the-1950s-768x432.png",
"published_at": "2026-08-19 05:30:09 UTC",
"sentiment": "neutral",
"source": "Bitcoin.com",
"category": "crypto"
},
{
"title": "Trump expected to nominate White House aide Heidi Overton as FDA commissioner",
"description": "",
"link": "https://seekingalpha.com/news/4634676-trump-expected-to-nominate-white-house-aide-heidi-overton-as-fda-commissioner?utm_source=feed_news_all&utm_medium=referral&feed_item_type=news",
"image_url": null,
"published_at": "2026-08-19 05:26:18 UTC",
"sentiment": "neutral",
"source": "seekingalpha.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.