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": "Grayscale Spotlights the Applications Fueling Solana’s Rapid Growth",
"description": "Grayscale says Solana’s growing application ecosystem is driving major on-chain activity, with the network averaging more than 100 million daily transactions year-to-date and supporting more than 1,000 decentralized applications. Why Applications Are Fueling Solana’s Growth Solana’s recent growth is being tied directly to the applications running on its network, according to Grayscale Head of Research […]",
"link": "https://news.bitcoin.com/grayscale-spotlights-the-applications-fueling-solanas-rapid-growth/",
"image_url": "https://static.news.bitcoin.com/wp-content/uploads/2026/07/grayscale-solana-768x432.jpg",
"published_at": "2026-07-04 23:30:08 UTC",
"sentiment": "bullish",
"source": "Bitcoin.com",
"category": "crypto"
},
{
"title": "Central Banks Add 41 Tonnes of Gold in May as Record 45% Plan to Buy More",
"description": "Central banks added a net 41 tonnes of gold to official reserves in May, World Gold Council data published July 2 shows, extending a buying wave that has averaged 1,000 tonnes a year over the past four years. A record 45% of reserve managers expect their own institutions to add more within the next 12 […]",
"link": "https://news.bitcoin.com/central-bank-gold-buying-may-2026/",
"image_url": "https://static.news.bitcoin.com/wp-content/uploads/2026/07/central-banks-add-41-tonnes-of-gold-in-may-as-record-45-plan-to-buy-more2_nwmk-768x432.jpg",
"published_at": "2026-07-04 23:05:10 UTC",
"sentiment": "neutral",
"source": "Bitcoin.com",
"category": "crypto"
}
]
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.