google-trends.interest_by_region
ActiveTool of Vee3
Fetch Google Trends interest-by-region breakdowns for one to five keywords. Returns a JSON object whose top-level keys are your keywords. Each value maps location names (countries or subregions) to interest scores (0–100). 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. resolution is COUNTRY (default) or REGION. Cost = 40 tokens.
Parameters schema
{
"type": "object",
"title": "get_google_trends_interest_by_regionArguments",
"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."
},
"resolution": {
"enum": [
"COUNTRY",
"REGION"
],
"type": "string",
"title": "Resolution",
"default": "COUNTRY",
"description": "Geographic resolution: COUNTRY (default) or REGION."
}
}
}Parent server
Vee3
https://github.com/Vee3io/Vee3
1/7 registries