Macro News API

FREE API

A chronologically cached endpoint that provides up to 50 of the latest macro and financial headlines with summaries, updated 4 times a day, perfect for feeding into LLMs cheaply to extract actionable themes.

Endpoint

GEThttps://diszy.com/bot/macro/news

Overview

The Macro News API returns a concise, chronological list of up to 50 high-quality financial headlines including summaries. This endpoint refreshes its data 4 times a day (every 6 hours) to ensure the feed stays current without excessive API limits. News items are deduplicated and cached for up to 7 days to preserve breaking stories smoothly over the weekend. Summaries limit the tokens needed to process these headlines in generative AI workflows.

Response Properties

PropertyTypeDescription
fetchedAtstringISO 8601 timestamp of data aggregation.
articlesArrayArray of article objects.
articles[].titlestringArticle headline.
articles[].summarystring1-2 sentence context summary.
articles[].sourcestringThe publisher of the article (e.g., CNBC).
articles[].publishedAtstringISO 8601 timestamp of publication.

Example Response

{
  "fetchedAt": "2026-05-17T12:00:00.000Z",
  "articles": [
    {
      "title": "US CPI Prints Hotter Than Expected at 3.4%",
      "summary": "Core inflation remains sticky, driven by shelter and services. Markets price out a July rate cut.",
      "source": "CNBC",
      "publishedAt": "2026-05-17T08:30:00.000Z"
    }
  ]
}