He utilizado https://newsapi.org/ para uno de mis últimos proyectos.
- gratis
- acceso a más de 30.000 fuentes de noticias de todo el mundo (estados unidos, Alemania, India, Japón, etc.)
- API RESTful de regresar JSON
- excelente documentación de la API
- ninguna limitación
Ejemplo: Titulares
Solicitud:
https://newsapi.org/v2/top-headlines?country=us&apiKey=YOUR_API_KEY
Respuesta:
{
status: 'ok',
totalResults: 36,
articles: [
{
source: {
id: 'cnbc',
name: 'CNBC'
},
author: 'Lauren Thomas',
title:
'Target reports holiday same-store sales growth of 5.7%, maintains 2018 outlook - CNBC',
description:
"Target said its same-store sales climbed 5.7 percent during this past holiday season, topping growth of 3.4 percent a year ago and surpassing some analysts' expectations.",
url:
'https://www.cnbc.com/2019/01/09/target-reports-2018-holiday-sales.html',
urlToImage:
'https://fm.cnbc.com/applications/cnbc.com/resources/img/editorial/2017/12/04/104877704-RTX3JT8Z-2-shopping-target.1910x1000.jpg',
publishedAt: '2019-01-10T11:30:10Z',
content:
'Target saw a surge of shoppers head to its stores and website this past holiday season, a sign that its investments in store remodels and delivery services are paying off, and an early sign that consumers across the U.S. spent more on gifts this year. div >… [+3929 chars]'
},
{
source: {
id: 'bloomberg',
name: 'Bloomberg'
},
author: null,
title:
'Ford to Cut Thousands of Jobs in Europe, Eyes Plant Closures - Bloomberg',
description: null,
url:
'https://www.bloomberg.com/news/articles/2019-01-10/ford-to-cut-thousands-of-jobs-in-europe-eyes-plant-closures',
urlToImage: null,
publishedAt: '2019-01-10T10:00:00Z',
content:
"To continue, please click the box below to let us know you're not a robot."
},
{
source: {
id: 'al-jazeera-english',
name: 'Al Jazeera English'
},
author: 'Al Jazeera',
title:
'Turkey says will launch Syria attack if US delays troop pullout - Aljazeera.com',
description:
"Turkey and US remain at loggerheads over the future of Syrian Kurdish forces after Trump's decision to pull out troops.",
url:
'https://www.aljazeera.com/news/2019/01/turkey-launch-syria-attack-delays-troop-pullout-190110092123874.html',
urlToImage:
'https://www.aljazeera.com/mritems/Images/2018/12/16/fcef9a3bf7424348b7fe95c865939579_18.jpg',
publishedAt: '2019-01-10T09:55:00Z',
content:
'Turkey will go ahead with an offensive against Syrian Kurdish fighters in Syria if the United States delays the withdrawal of its troops from the war-torn country, Turkish Foreign Minister Mevlut Cavusoglu has said.'
}
// ... and many more
]
};