Discover/Nytimes API
live

Nytimes APInytimes.com

Fetch recent NYT articles by section via a single API endpoint. Returns title, URL, summary, authors, publication date, and thumbnail for each article.

This API takes change requests — .
Endpoint health
verified 2h ago
get_section_articles
1/1 passing latest checkself-healing
Endpoints
1
Updated
2h ago

What is the Nytimes API?

The New York Times API gives developers access to recent articles across NYT editorial sections through a single endpoint, get_section_articles. Each response includes up to 7 fields per article — title, URL, summary, published date, kicker label, authors, and thumbnail image URL — covering sections from world news and technology to opinion and sports.

Try it
NYT section slug (e.g. world, us, business, technology, science, health, arts, sports, opinion).
api.parse.bot/scraper/4de61c33-f401-4faa-83eb-9921e06d1b0b/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/4de61c33-f401-4faa-83eb-9921e06d1b0b/get_section_articles?section=technology' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace nytimes-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: nytimes_com_api SDK — bounded, re-runnable; every call capped."""
from parse_apis.nytimes_com_api import NYTimes, SectionNotFound

client = NYTimes()

# List recent articles from the technology section
for article in client.articles.list(section="technology", limit=3):
    print(article.title, article.published_date, article.authors)

# Get the first article from world news
item = client.articles.list(section="world", limit=1).first()
if item:
    print(item.title, item.url, item.summary)

# Handle a non-existent section
try:
    client.articles.list(section="nonexistent", limit=1).first()
except SectionNotFound as e:
    print("section not found:", e.section)

print("exercised: articles.list")
All endpoints · 1 totalmissing one? ·

Fetches recent articles from a given NYT section. Returns a list of articles with title, URL, summary, publication date, kicker label, authors, and thumbnail image URL. Sections include world, us, business, technology, science, health, arts, sports, opinion, and others matching the nytimes.com/section/ navigation.

Input
ParamTypeDescription
sectionstringNYT section slug (e.g. world, us, business, technology, science, health, arts, sports, opinion).
Response
{
  "type": "object",
  "fields": {
    "section": "the section slug that was queried",
    "articles": "array of article objects with title, url, summary, published_date, kicker, authors, image_url"
  },
  "sample": {
    "data": {
      "section": "technology",
      "articles": [
        {
          "url": "https://www.nytimes.com/2026/07/09/technology/personaltech/iphone-android-health-tracking.html",
          "title": "How to Turn Your Phone Into a Personal Health Dashboard",
          "kicker": "Tech Tip",
          "authors": [
            "J. D. Biersdorfer"
          ],
          "summary": "Free apps from Google, Samsung and Apple can help you track your diet, exercise and well-being.",
          "image_url": "https://static01.nyt.com/images/2026/07/20/technology/personaltech/08BIZ-TECHTIP-TOPART/08BIZ-TECHTIP-TOPART-jumbo.jpg",
          "published_date": "2026-07-09T09:02:09.000Z"
        }
      ]
    },
    "status": "success"
  }
}

About the Nytimes API

What the API Returns

The get_section_articles endpoint accepts a section parameter and returns a structured response with two top-level fields: section (the slug that was queried) and articles (an array of article objects). Each article object contains title, url, summary, published_date, kicker, authors, and image_url. The kicker field is the short label NYT displays above a headline — useful for distinguishing news sub-types like "Opinion", "News Analysis", or a beat label.

Sections and Parameters

The section input is a string slug and is optional. Supported values include world, us, business, technology, science, health, arts, sports, and opinion, among others. If you omit the parameter, the endpoint falls back to a default section. There is no pagination parameter — the endpoint returns the most recent articles available for the given section at the time of the call.

Data Shape and Freshness

The authors field returns an array of byline contributors for each article. The image_url field points to a thumbnail used in NYT section listings, which may be absent for some articles. The published_date field reflects the article's original publication timestamp, not an update timestamp, so articles that are significantly corrected or updated after publication will still show the original date.

Reliability & maintenanceVerified

The Nytimes API is a managed, monitored endpoint for nytimes.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when nytimes.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official nytimes.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
2h ago
Latest check
1/1 endpoint passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Display a live NYT technology news feed on a developer dashboard using the technology section slug
  • Aggregate article summary and published_date fields to build a daily briefing digest
  • Pull image_url and title from multiple sections to populate a news widget with thumbnails
  • Monitor the opinion section for new bylines by tracking the authors field across requests
  • Build a cross-section search index by iterating through section slugs and storing url and kicker values
  • Alert on breaking health or science articles by polling the health and science sections on a schedule
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does The New York Times have an official developer API?+
Yes. The New York Times publishes the NYT Developer APIs at developer.nytimes.com, which include their own Top Stories, Article Search, and Books APIs, among others. Those require a separate API key registration directly with NYT.
What does the `kicker` field contain and how is it different from `title`?+
The kicker is the short label NYT displays above a headline — typically a beat, desk, or content-type label such as "News Analysis", "Opinion", or a geographic label. It is separate from the article title and can be useful for filtering or categorizing articles by content type without parsing the headline text.
Does the API support full article body text?+
Not currently. The API returns metadata fields — title, url, summary, published_date, kicker, authors, and image_url — but not the full article body. You can fork this API on Parse and revise it to add an endpoint that retrieves article body content.
Can I search articles by keyword or date range?+
Not currently. The get_section_articles endpoint filters only by section slug and returns the most recent articles for that section; there is no keyword search or date-range parameter. You can fork this API on Parse and revise it to add a search endpoint.
Are there any articles that won't appear in section results?+
Some NYT content is behind a paywall or requires a subscription to display fully. The API returns metadata for articles listed in section feeds, but paywalled article bodies are not included. Additionally, the image_url field may be empty for articles that do not have a section thumbnail assigned.
Page content last updated . Spec covers 1 endpoint from nytimes.com.
Related APIs in News MediaSee all →
news.un.org API
Access UN News headlines, stories, and articles organized by topic and region across multiple languages. Search news content, retrieve in-depth reports, and subscribe to RSS feeds for updates on global events and UN initiatives.
nrk.no API
Access the latest news from Norway's leading broadcaster NRK.no, including front-page stories, category-specific articles, regional news, and breaking news updates through a unified search and browsing interface. Stay informed with full article content, RSS feeds, and real-time news ticker notifications across all major topics.
sneakernews.com API
Browse the latest sneaker news, search articles by keyword, and look up upcoming release dates — including pricing, images, and retailer links. Also surfaces per-page ad slot inventory and density metrics for programmatic and publisher analysis.
prnewswire.com API
Access the latest press releases, earnings announcements, and news from PR Newswire across specific categories and organizations, with options to search by keywords or dates. Filter releases by industry, company newsrooms, and subscribe to RSS feeds for real-time updates on corporate news and financial disclosures.
nyse.com API
Access data from nyse.com.
railway-technology.com API
Stay informed on railway industry developments by accessing the latest news, searching articles by sector or theme, and researching infrastructure projects and company profiles. Get detailed information on specific news articles, project details, and company backgrounds all in one place.
autonews.com API
Stay updated on the automotive industry with instant access to headlines, articles, and news across global regions (Europe, Canada, Asia), specific brands, and industry categories. Search for relevant automotive news, read detailed articles, and browse the latest stories from Automotive News all in one place.
bleacherreport.com API
Access sports news articles, live scores, and detailed game statistics from Bleacher Report across all major leagues including the NBA, NFL, MLB, and NHL. Retrieve full article content, expert analysis, and box-score data for any supported sport and date.