Naar de inhoud
GET /v1/news

News articles driving the current trends

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/googletrends-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

curl "https://api.oanor.com/googletrends-api/v1/news" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/googletrends-api/v1/news", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/googletrends-api/v1/news");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
    "https://api.oanor.com/googletrends-api/v1/news",
    headers={"x-oanor-key": "oanor_test_..."}
)

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "geo": "US",
        "note": "The news stories powering the current trending searches in a country — the articles people are reading that drive each trend, each tagged with its trend, source and link. The article-centric view: what news is driving search right now. Pass geo (default US).",
        "count": 28,
        "source": "Google Trends",
        "articles": [
            {
                "url": "https://www.marca.com/futbol/real-madrid/2026/06/14/real-madrid-ata-cucurella.html",
                "title": "El Real Madrid ata a Cucurella",
                "trend": "real madrid",
                "source": "MARCA",
                "picture": "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSwP9gP3K58I_0rsMUZdio-Pwx9A6oYMV-1Rv_VGwhz0w-BZPeoniWbdghvDlU",
                "snippet": null
            },
            {
                "url": "https://as.com/futbol/primera/el-real-madrid-negocia-por-cucurella-f202606-n/",
                "title": "Cucurella, pie y medio en el Real Madrid",
                "trend": "real madrid",
                "source": "Diario AS",
                "picture": "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQiVpA2MYGiMdRAEPQq957Qaak8ERrc3IW2UuOIV409BwpikSW0pUGhHTqIHM8",
                "snippet": null
            },
            {
                "url": "https://www.sport.es/es/noticias/real-madrid/acuerdo-total-madrid-fichar-marc-131392810",
                "title": "¡Acuerdo total del Madrid para fichar a Marc Cucurella!",
                "trend": "real madrid",
                "source": "SPORT",
                "picture": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT4A8KhO62KD-EbNOYZfz07j7lVs3dArmCm67dpmyJln8978ajLyaY29mKguKw",
                "snippet": null
            },
            {
                "url": "https://creators.yahoo.com/lifestyle/story/i-stayed-at-one-of-arubas-best-value-resorts--and-it-was-more-luxe-than-i-expected-214529241.html",
                "title": "I Stayed at One of Aruba’s Best-Value Resorts — And It Was More Luxe Than I Expected",
                "trend": "aruba",
                "source": "Yahoo Creators",
                "picture": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSBrqzdOs9PKYK6GVQyOG81GK2yFoBCOufzFIG8vIHIZ5GPDoCKF-ZOGDidplg",
                "snippet": null
            },
            {
                "url": "https://airlinegeeks.com/2026/06/13/porter-adds-new-routes-to-u-s-caribbean/",
                "title": "Porter Adds New Routes to U.S., Caribbean",
                "trend": "aruba",
                "source": "AirlineGeeks.com",
                "picture": "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRe_dOS_1k5xfLW1Xams9eDZDZSHWh-VsWFBi57V2_aw0MQXZsDFe18iHLrd84",
                "snippet": null
            },
            {
                "url": "https://www.thespec.com/business/hamilton-region/porter-airlines-new-destination-hamilton-tampa/article_d94e87a8-2be4-5493-8b11-7169b1ed407e.html",
       
…