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": "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"
  }
]
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.