Vai al contenuto
GET /v1/meta

Service metadata

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/googletrends-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

{
    "data": {
        "sample": {
            "top_us_trend": "real madrid"
        },
        "source": "Google Trends public Daily Search Trends RSS (trends.google.com/trending/rss), keyless",
        "service": "googletrends-api",
        "endpoints": {
            "GET /v1/geos": "Supported country codes.",
            "GET /v1/meta": "This document.",
            "GET /v1/news": "News articles driving the current trends (geo, limit).",
            "GET /v1/trending": "Current trending searches for a country (geo, limit)."
        },
        "description": "Live trending Google searches by country with no key: the current trending searches for any country (term-centric, with search volume and top news), the news articles driving those trends (article-centric), and the list of supported countries. The real-time search-interest / trends-discovery layer for news, marketing, SEO and social-listening tools. Live, short cache only.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-14T17:03:40.876Z",
        "request_id": "1f164f73-020f-49ad-a79c-e0f9412a7f94"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}