Provides news
The New York Times API provides access to news articles and various content from The New York Times.
import requests
url = "https://api.nytimes.com/svc/search/v2/articlesearch.json"
params = {
"q": "election",
"api-key": "YOUR_API_KEY"
}
response = requests.get(url, params=params)
print(response.json())Last 50 checks (10 min intervals)