Macro News API
FREE APIA 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
GET
https://diszy.com/bot/macro/newsOverview
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
| Property | Type | Description |
|---|---|---|
fetchedAt | string | ISO 8601 timestamp of data aggregation. |
articles | Array | Array of article objects. |
articles[].title | string | Article headline. |
articles[].summary | string | 1-2 sentence context summary. |
articles[].source | string | The publisher of the article (e.g., CNBC). |
articles[].publishedAt | string | ISO 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"
}
]
}