For Agents
Stream the latest NYT and AP article URLs and metadata as soon as they are published, filterable by source and section.
Get started with Times Newswire API in minutes using your preferred integration method.
# Add to your MCP client config (Claude Desktop, Cursor, Windsurf)
{
"jentic": {
"url": "https://api.jentic.com/mcp",
"auth": "oauth"
}
}
# Then ask your agent:
"stream latest NYT articles"
# → Jentic returns the GET /events tool with parameter schema, agent executes.What an agent can do with Times Newswire API API.
Stream the latest NYT and AP article URLs as they publish
Filter the wire to a specific source (NYT or IHT) or all sources
Restrict the wire to a chosen section such as Politics or Business
Look back across configurable time-period windows
Pull article media metadata including image URLs and captions
GET STARTED
Use for: Get the latest NYT articles published in the last hour, Stream new Politics articles as they publish, Find recently published NYT articles in the Business section, List the latest articles across every section and source
Not supported: Does not provide full article body text, push delivery, or reader engagement metrics — use for chronological streaming of newly-published NYT and AP article metadata only.
The New York Times Times Newswire API is a real-time stream of NYT article URLs and metadata, updated as soon as articles are published on NYTimes.com or sourced from the Associated Press. Three GET endpoints return content from a chosen source (all, nyt, or iht), section, and time-period combination. Each item carries title, byline, abstract, publication date, web URL, geographic facets, organisational facets, and embedded multimedia, supporting near-real-time newsroom monitoring and downstream content distribution.
Surface geographic and organisational facets attached to each article
Patterns agents use Times Newswire API API for, with concrete tasks.
★ Newsroom Monitor
Build a near-real-time dashboard that surfaces every newly published NYT article in chosen sections. The /content/{source}/{section}.json endpoint returns the latest entries with title, byline, abstract, multimedia, and the canonical URL, so a polling loop every 30 seconds gives a fresh wire view without overrunning rate limits.
Call /content/nyt/all.json every 30 seconds and emit each article URL not seen in the previous response.
Section-Filtered Content Distribution
Distribute newly published NYT articles to downstream channels filtered by section. The Times Newswire endpoints accept a section path segment so a Politics-only feed can be fed straight into a Slack channel, push notification system, or RSS conversion pipeline.
Call /content/nyt/politics.json every minute and forward new article entries to a Slack channel via webhook.
Editorial Calendar Backfill
Backfill a wider time window using the /content/{source}/{section}/{time-period}.json endpoint, which supports configurable look-back periods. This lets an editorial system reconstruct the publish timeline for a section over recent hours rather than only the latest snapshot.
Call /content/nyt/business/24.json once per day and ingest the full 24-hour publication list for the Business section.
Agent-Driven News Monitoring via Jentic
An AI news monitoring agent uses Jentic to pull the latest NYT wire on demand. Jentic returns the matching /content endpoint with its source/section/time-period parameter schema, the agent loads it and executes the call without manually wiring the URL templates.
Search Jentic for 'stream latest NYT articles', load the /content/{source}/{section}.json operation, and execute it with source='nyt' and section='all'.
3 endpoints — the new york times times newswire api is a real-time stream of nyt article urls and metadata, updated as soon as articles are published on nytimes.
METHOD
PATH
DESCRIPTION
/content.json
Latest articles across every source and section
/content/{source}/{section}.json
Latest articles for a chosen source and section
/content/{source}/{section}/{time-period}.json
Articles for a chosen source, section, and time period
/content.json
Latest articles across every source and section
/content/{source}/{section}.json
Latest articles for a chosen source and section
/content/{source}/{section}/{time-period}.json
Articles for a chosen source, section, and time period
Three things that make agents converge on Jentic-routed access.
Credential isolation
The NYT api-key is stored encrypted in the Jentic vault and injected into the api-key query parameter at execution time. A single credential authenticates every NYT API in the workspace, so rotating once refreshes Times Newswire, Top Stories, Most Popular, and the others together.
Intent-based discovery
Agents search Jentic for 'stream latest NYT articles' or 'monitor NYT publications' and Jentic returns the matching /content endpoint with its source/section/time-period parameters, removing the need to read NYT documentation.
Time to first call
Direct integration: a few hours to wire the api-key, build the polling loop, and de-duplicate by URL. Through Jentic: under 15 minutes.
Alternatives and complements available in the Jentic catalogue.
NYT Top Stories API
Editor-curated section fronts rather than a publish-time-ordered wire feed.
Choose Top Stories for editorially-curated section fronts; choose Times Newswire for chronological publication-order streaming.
NYT Most Popular API
Engagement-ranked lists that complement Times Newswire's publication-time stream.
Use Times Newswire to detect new publications and Most Popular to see which gain traction over the next hours.
NYT Community API
Reader comments on the same article URLs surfaced by Times Newswire.
Pair to enrich a freshly-published article with its evolving comment thread.
Specific to using Times Newswire API API through Jentic.
What authentication does the NYT Times Newswire API use?
Authentication is an API key passed as the api-key query parameter on every endpoint. Provision a key at developer.nytimes.com. Through Jentic the credential lives in the vault and is injected at execution time, so the agent never sees the raw key.
How fresh is the Times Newswire data?
The wire updates within seconds of an article's publication on NYTimes.com or arrival from the Associated Press. Polling /content/nyt/all.json every 30 seconds gives near-real-time coverage without exceeding the 5-requests-per-minute cap.
What are the rate limits for the NYT Times Newswire API?
NYT enforces 500 requests per day and 5 requests per minute per API key, shared across all NYT developer APIs. With the 30-second polling cadence on a single section, a single key can monitor about 2-3 sections simultaneously within budget.
How do I stream the latest NYT articles through Jentic?
Search Jentic for 'stream latest NYT articles', load the /content/{source}/{section}.json operation, and execute it with source='nyt' and section='all'. Track the URLs returned and emit each new entry on subsequent calls.
Is the NYT Times Newswire API free to use?
Yes. NYT offers Times Newswire at no cost on the developer portal for non-commercial use within the published rate limits. Commercial redistribution of NYT content requires a separate licensing agreement with the NYT licensing team.
Does this API include full article body text?
No. The wire returns headline, byline, abstract, URL, multimedia, and tag facets, but not full body text. Use the URL to direct readers to NYTimes.com or pair with the Article Search API for archived content lookups.