Install
openclaw skills install @dataify-server/dataify-google-trendsopenclaw skills install @dataify-server/dataify-google-trendsUse this skill to turn a user's Google Trends request into a Dataify Scraper API form submission.
q as the query and set engine to google_trends.DATAIFY_API_TOKEN.q to pizza; ask the user for a query if it cannot be inferred.python3 scripts/google_trends.py --q "AI" --json 1
For many fields, pass one JSON object with shell-appropriate quoting. The script still submits form data to the API:
python3 scripts/google_trends.py --params-json '{"q":"AI","json":"1","hl":"en","geo":"United+States","data_type":"TIMESERIES"}'
To generate the required pre-call parameter table from the normalized request without calling the API:
python3 scripts/google_trends.py --request "search Google Trends for AI in the United States, English, timeseries" --preview-table
Return the final script output directly to the user. Do not summarize, extract, clean, translate, or reshape the API response.
Use references/google_trends_api.md when you need the exact field list, defaults, values, or parameter descriptions.
Core rules:
Content-Type: application/x-www-form-urlencoded.engine to google_trends.q cannot be inferred.Bearer is accepted and prefixed automatically.Common mappings:
json: "1"json: "2"json: "3"json: "4"no_cache: "true"no_cache: "false"hlgeoregiondata_type: "TIMESERIES"data_type: "GEO_MAP"data_type: "GEO_MAP_0"data_type: "RELATED_TOPICS"data_type: "RELATED_QUERIES"tzcatgprop: "images"gprop: "news"gprop: "froogle"gprop: "youtube"datecsv: "true"include_low_search_volume: "true"python3 scripts/google_trends.py --q "AI" --json 1
export for macOS/Linux shells, $env: for Windows PowerShell, or set for Windows Command Prompt). Show other platforms or persistent setup only when detection is ambiguous or the user asks.DATAIFY_API_TOKEN is present; never print its value. If verification succeeds, continue the original task without asking the user to repeat it..env unless the execution path explicitly loads it, and ensure .env is ignored by version control.