New York Times
Article search and metadata from NYT Developer Network
The New York Times Developer API covers article search, top stories, books, and archive metadata. Register for an API key; most endpoints return JSON with headline, abstract, and URLs.
GET https://api.nytimes.com/svc/topstories/v2/home.json
{
"fault": {
"faultstring": "Failed to resolve API Key variable request.queryparam.api-key",
"detail": {
"errorcode": "steps.oauth.v2.FailedToResolveAPIKey"
}
}
}curl "https://api.nytimes.com/svc/topstories/v2/home.json"const res = await fetch("https://api.nytimes.com/svc/topstories/v2/home.json");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://api.nytimes.com/svc/topstories/v2/home.json")
print(res.json())/svc/topstories/v2/home.jsonPROBEDArticle search and metadata from NYT Developer Network
/svcSvc — documented GET route.
/svc/1Svc details by ID (example: 1).
/svc?limit=10Svc — documented GET route.
/svc/search?q=testSearch by query parameters.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.
New York Times: common questions
Is New York Times free to use?
Yes — New York Times is a free open data API. Free tier: Free tier — 500 requests/day. Whether the free tier allows commercial use is unclear — check the provider docs.
Does New York Times need an API key?
Yes — New York Times needs a free API key, which you pass on each request. Rate limits: 500 requests/day on free plan.
Can I call New York Times from the browser?
Yes — New York Times returns CORS headers over HTTPS, so front-end code can fetch it directly with no backend proxy. Use the fetch snippet on this page, or hit "Run live" to try it now.
Is New York Times up right now?
As of our last scheduled check, New York Times is unmonitored. We re-probe it every sweep — the status badge and uptime chart above always show the latest.