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