Aller au contenu
GET /v1/trending

Current trending searches for a country

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/googletrends-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

curl "https://api.oanor.com/googletrends-api/v1/trending" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/googletrends-api/v1/trending", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/googletrends-api/v1/trending");
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/trending",
    headers={"x-oanor-key": "oanor_test_..."}
)

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

{
    "data": {
        "geo": "US",
        "note": "The current trending Google searches in a country, ranked — each with its approximate search volume, a representative image, when it started trending and the top news story driving it. Pass geo (a 2-letter country code, default US). The real-time pulse of what a country is searching for.",
        "count": 10,
        "source": "Google Trends",
        "trends": [
            {
                "rank": 1,
                "title": "real madrid",
                "picture": "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSwP9gP3K58I_0rsMUZdio-Pwx9A6oYMV-1Rv_VGwhz0w-BZPeoniWbdghvDlU",
                "pub_date": "Sun, 14 Jun 2026 09:50:00 -0700",
                "top_news": {
                    "url": "https://www.marca.com/futbol/real-madrid/2026/06/14/real-madrid-ata-cucurella.html",
                    "title": "El Real Madrid ata a Cucurella",
                    "source": "MARCA"
                },
                "news_count": 3,
                "approx_traffic": "1000+"
            },
            {
                "rank": 2,
                "title": "aruba",
                "picture": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSBrqzdOs9PKYK6GVQyOG81GK2yFoBCOufzFIG8vIHIZ5GPDoCKF-ZOGDidplg",
                "pub_date": "Sun, 14 Jun 2026 09:50:00 -0700",
                "top_news": {
                    "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",
                    "source": "Yahoo Creators"
                },
                "news_count": 3,
                "approx_traffic": "500+"
            },
            {
                "rank": 3,
                "title": "germany roster",
                "picture": "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcT3Vqvrb3_C3oN2B8qIQ-xrMYLXl2jzwKVKcfxx2PtOSLX1YHUgWmf_qu3ALrs",
                "pub_date": "Sun, 14 Jun 2026 09:50:00 -0700",
                "top_news": {
                    "url": "https://www.dw.com/en/germany-news-hopes-high-ahead-of-first-world-cup-match/live-77535533",
                    "title": "Germany news: Hopes high ahead of first World Cup match",
                    "source": "DW.com"
                },
                "news_count": 3,
                "approx_traffic": "500+"
            },
            {
                "rank": 4,
                "title": "houston stadium",
                "picture": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTjwnokGdpM3xdTaEH4YFoHLuxVFiP0KhwjFsDrx8acBBlG0Yfb2zqCfShVfxQ",
                "pub_date": "Sun, 14 Jun 2026 09:50:00 -0700",
                "top_news": {
                    "url": "https://www.khou.com/article/sports/soccer/world-cup/houston-fan-fest-parking-downtown/285-b50b46ba-de65-4ba0-b72c-b46b97c076b9",
                  
…