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": "Metaplanet cuts executive reward pool by 41%, extinguishes $220 million in value",
"description": "The bitcoin treasury firm cut the potential Series 10 share pool to 188.2 million.",
"link": "https://www.coindesk.com/business/2026/09/11/metaplanet-cuts-executive-reward-pool-by-41-extinguishes-usd220-million-in-value",
"image_url": null,
"published_at": "2026-09-11 13:46:51 UTC",
"sentiment": "neutral",
"source": "coindesk.com",
"category": "crypto"
},
{
"title": "Coffee Holding GAAP EPS of $0.35, revenue of $21.69M",
"description": "",
"link": "https://seekingalpha.com/news/4642066-coffee-holding-gaap-eps-of-035-revenue-of-2169m?utm_source=feed_news_all&utm_medium=referral&feed_item_type=news",
"image_url": null,
"published_at": "2026-09-11 13:44:53 UTC",
"sentiment": "bullish",
"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.