Google Super

get_trends

Get Google Trends data for a search term. Use data_type to choose: TIMESERIES (default), GEO_MAP, RELATED_TOPICS, or RELATED_QUERIES.

Remote google/trends

Remote (network-hosted)

Other tools also called get_trends? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "q": {
      "type": "string",
      "description": "Search term (comma-separated for comparison, up to 5 terms)."
    },
    "cat": {
      "type": "integer",
      "description": "Category ID (0 = all categories, default)."
    },
    "geo": {
      "type": "string",
      "description": "Geographic restriction (country/region code, e.g. 'US', 'US-NY', 'GB')."
    },
    "date": {
      "type": "string",
      "description": "Date range. 'now 1-H', 'now 4-H', 'now 1-d', 'now 7-d', 'today 1-m', 'today 3-m', 'today 12-m' (default), 'today 5-y', 'all'."
    },
    "data_type": {
      "enum": [
        "TIMESERIES",
        "GEO_MAP",
        "GEO_MAP_0",
        "RELATED_TOPICS",
        "RELATED_QUERIES"
      ],
      "type": "string",
      "description": "What to return. 'TIMESERIES' (default), 'GEO_MAP', 'GEO_MAP_0', 'RELATED_TOPICS', 'RELATED_QUERIES'."
    }
  }
}