get_searches
trends.google.comReturns current ranked Google Trends searches for a country, including search volume, growth, related queries, status, timing, and category classifications from https://trends.google.com.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_searches?
Returns current ranked Google Trends searches for a country, including search volume, growth, related queries, status, timing, and category classifications from https://trends.google.com. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass country, limit, timeframe_hours, category, active_only, sort_by, language and get the result back without maintaining a scraper.
Response
{
"trends": [
{
"rank": 0,
"topic": "<string>",
"ended_at": "<string>",
"is_active": true,
"categories": [
{
"id": 0,
"name": "<string>"
}
],
"started_at": "<string>",
"country_code": "<string>",
"search_volume": 0,
"related_queries": [
"<string>"
],
"growth_formatted": "<string>",
"normalized_topic": "<string>",
"growth_percentage": 0,
"ended_at_timestamp": 0,
"started_at_timestamp": 0,
"search_volume_formatted": "<string>"
}
],
"sort_by": "<string>",
"country_code": "<string>",
"returned_count": 0,
"category_filter": "<string>",
"timeframe_hours": 0,
"total_available": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/2e0cae33-66e4-4f38-a622-dc6b0a610723/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "2e0cae33-66e4-4f38-a622-dc6b0a610723",
"variables": {
"country": "US",
"limit": 25,
"timeframe_hours": 24,
"category": "all",
"active_only": false,
"sort_by": "relevance",
"language": "en"
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="2e0cae33-66e4-4f38-a622-dc6b0a610723") — the "get_searches" function, which returns current ranked Google Trends searches for a country, including search volume, growth, related queries, status, timing, and category classifications from https://trends.google.com.. It takes country (str), limit (int), timeframe_hours (int), category (str), active_only (bool), sort_by (str), language (str). Return the result as structured JSON.