google-trends.related_queries
ActiveTool of Vee3
Fetch Google Trends related queries for one to five keywords. Returns a JSON object whose top-level keys are your keywords. Each value has top and rising sections; each section has query (rank index to query string) and value (rank index to score). Requires start in datetime-with-timezone form (for example 2020-05-01T00:43:37+0100). Optional end defaults to now. country defaults to global; region requires a valid country. category and gprop default to all when omitted or empty. Use google-trends.categories and google-trends.regions to discover valid category, country, and region values. Cost = 40 tokens.
Parameters schema
{
"type": "object",
"title": "get_google_trends_related_queriesArguments",
"required": [
"keywords",
"start"
],
"properties": {
"end": {
"anyOf": [
{
"type": "string",
"maxLength": 64
},
{
"type": "null"
}
],
"title": "End",
"default": null,
"description": "Range end in datetime-with-timezone form. Defaults to now."
},
"gprop": {
"anyOf": [
{
"type": "string",
"maxLength": 64
},
{
"type": "null"
}
],
"title": "Gprop",
"default": null,
"description": "Google property filter (for example images, news, youtube, froogle). Defaults to all."
},
"start": {
"type": "string",
"title": "Start",
"maxLength": 64,
"description": "Range start in datetime-with-timezone form (for example 2020-05-01T00:43:37+0100)."
},
"region": {
"anyOf": [
{
"type": "string",
"maxLength": 128
},
{
"type": "null"
}
],
"title": "Region",
"default": null,
"description": "Region within country. Requires country when set."
},
"country": {
"anyOf": [
{
"type": "string",
"maxLength": 128
},
{
"type": "null"
}
],
"title": "Country",
"default": null,
"description": "Country name for geo filtering. Defaults to global."
},
"category": {
"anyOf": [
{
"type": "string",
"maxLength": 256
},
{
"type": "null"
}
],
"title": "Category",
"default": null,
"description": "Trends category or subcategory. Defaults to all."
},
"keywords": {
"type": "array",
"items": {
"type": "string"
},
"title": "Keywords",
"maxItems": 5,
"minItems": 1,
"description": "Up to five keywords to compare."
}
}
}Parent server
Vee3
https://github.com/Vee3io/Vee3
1/7 registries