/v1/meta
Service metadata
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
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_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"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
}