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.

How to call

Request format

GET only
curl -X GET "https://newhedge.io/api/v2/news/:query_type?api_token=YOUR_TOKEN"
Path params

:query_type — all, bitcoin, crypto, or macro. Use all for the full feed.

Query params

api_token (required) — 24 character token.

Responses

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.

Endpoint

Latest news

Returns curated articles filtered by category.

Endpoint
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.

Sample response
200 Successful response
[
  {
    "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"
  }
]
Fields

Response attributes

Title

title — headline of the article.

Description

description — summary text.

Link

link — original URL for the story.

Image

image_url — preview image when available.

Published at

published_at — timestamp in ISO8601.

Sentiment

sentiment — one of neutral, bearish, bullish.

Source

source — hostname of the publisher.

Category

category — news grouping, matches :query_type when filtered.