/v1/meta
Service metadata
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
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_..."}
)
Example response
A real response from this endpoint, captured by the latest 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
}