get_trending_terms
Fetch trending search terms for a specific geo location using Google Trends. Analyze popular keywords and trends to gain insights into current topics and regional interests.
Instructions
Returns google trends for a specific geo location.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
full_data | No | Return full data for each trend. Should be False for most use cases. | |
geo | No | Country code, e.g. 'US', 'GB', 'IN', etc. | US |
Input Schema (JSON Schema)
{
"properties": {
"full_data": {
"default": false,
"description": "Return full data for each trend. Should be False for most use cases.",
"title": "Full Data",
"type": "boolean"
},
"geo": {
"default": "US",
"description": "Country code, e.g. 'US', 'GB', 'IN', etc.",
"title": "Geo",
"type": "string"
}
},
"type": "object"
}