Test a Google News API request

Enter a query, choose a country and language, and inspect the returned headlines and story data.

Request

Add a key to run the request. Create one in pricing. get a free key

GET/search
curl --request GET \
--url "https://api.bonai.io/google-news/search?query=stock%20market&country=us&language=en" \
--header "api-key: YOUR_API_KEY"
Sample response — add a key to run a live request.
JSON response
{
"metadata": {
"id": "6f8c2a9e-4d1b-4e9a-9b6c-3a5f7d8e9a01",
"total_hits": 15,
"timestamp": "2026-07-22T10:30:00Z",
"took_ms": 180
},
"parameters": {
"query": "stock market",
"language": "en",
"country": "us"
},
"news_articles": [
{
"type": "article",
"title": "Stock markets rally on stronger-than-expected earnings",
"url": "https://www.reuters.com/markets-rally",
"date": "2026-07-22T10:30:00Z",
"image": "https://example.com/thumb.jpg",
"source": {
"name": "Reuters",
"url": "https://www.reuters.com",
"favicon": "https://www.reuters.com/favicon.ico"
},
"authors": [
"Alex Rivera"
]
},
{
"type": "article",
"title": "EV makers race to scale up battery production",
"url": "https://www.cnbc.com/ev-battery-race",
"date": "2026-07-22T09:15:00Z",
"image": null,
"source": {
"name": "CNBC",
"url": "https://www.cnbc.com",
"favicon": "https://www.cnbc.com/favicon.ico"
},
"authors": [
"Sofia Chen"
]
},
{
"type": "article",
"title": "Fed officials weigh next move on interest rates",
"url": "https://www.bloomberg.com/fed-rate-paths",
"date": "2026-07-22T08:45:00Z",
"image": null,
"source": {
"name": "Bloomberg",
"url": "https://www.bloomberg.com",
"favicon": "https://www.bloomberg.com/favicon.ico"
},
"authors": [
"Marcus Lee"
]
},
{
"type": "article",
"title": "Global leaders commit to new climate finance targets",
"url": "https://www.theguardian.com/climate-finance",
"date": "2026-07-22T07:20:00Z",
"image": "https://example.com/climate.jpg",
"source": {
"name": "The Guardian",
"url": "https://www.theguardian.com",
"favicon": "https://www.theguardian.com/favicon.ico"
},
"authors": [
"Priya Nair"
]
},
{
"type": "article",
"title": "Chipmakers expand capacity to meet AI demand",
"url": "https://asia.nikkei.com/chipmakers-expand",
"date": "2026-07-22T06:50:00Z",
"image": null,
"source": {
"name": "Nikkei Asia",
"url": "https://asia.nikkei.com",
"favicon": "https://asia.nikkei.com/favicon.ico"
},
"authors": [
"Hana Suzuki"
]
},
{
"type": "article",
"title": "Ransomware attacks target hospitals, prompting federal response",
"url": "https://www.bbc.com/ransomware-hospitals",
"date": "2026-07-22T05:30:00Z",
"image": null,
"source": {
"name": "BBC",
"url": "https://www.bbc.com",
"favicon": "https://www.bbc.com/favicon.ico"
},
"authors": [
"David Okafor"
]
}
],
"navigation_links": [
{
"name": "Technology",
"topic_id": "CAAqJggKIiBDQkFTRWdvSUwyMHZNRGRqTVhZU0F"
},
{
"name": "Business",
"topic_id": "CAAqJggKIiBDQkFTRWdvSUwyMHZNRGx6TVdZU0F"
}
]
}