Google search and market data

Google Trends Trending Searches by Country

Trending searches from Google Trends per country: every trend of the last 4 hours to 7 days with search volume, growth, start and end time, category and related queries. Up to 200 countries per run, pay only for delivered trends.

$0.60per 1,000 ยท Trend listed

One trending search delivered, with volume, growth, timing, category and related queries. Countries that fail and trends removed by filters are never charged.

run it
ACTOR=steadydata~google-trending-searches
URL="https://api.apify.com/v2/acts/$ACTOR/run-sync-get-dataset-items"

curl -X POST "$URL?token=$APIFY_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"countries": ["US", "GB", "NL"], "hours": "24", "maxTrendsPerCountry": 500}'

# rows come straight back as JSON, one object per delivered row

Input

FieldNameWhat it does
countries
required
CountriesTwo-letter country codes, one per row (e.g. US, GB, NL, DE, IN). Each country is one input; a country without trends comes back as an error record at no cost.
hoursTime windowHow far back to look: 4, 24 or 48 hours, or 168 for the last 7 days. Longer windows return more trends, most of them already finished.
maxTrendsPerCountryMax trends per countryCost ceiling: at most this many trends per country, ranked the way Google Trends ranks them. A 24-hour window typically holds 100 to 500 trends, a 7-day window up to 3,000.
activeOnlyActive trends onlyKeep only trends that are still rising right now; drop the ones Google marks as ended.
minSearchVolumeMinimum search volumeSkip trends below this many searches in the window (Google reports volume in steps: 100, 200, 500, 1,000 ... 5,000,000). 0 keeps everything.
categoriesCategoriesOptional filter. Leave empty for all categories. Values: Autos and Vehicles, Beauty and Fashion, Business and Finance, Climate, Entertainment, Food and Drink, Games, Health, Hobbies and Leisure, Jobs and Education, Law and Government, Other, Pets and Animals, Politics, Science, Shopping, Sports, Technology, Travel and Transportation.
languageLanguageInterface language for the request (hl), e.g. en, nl, de. Trend titles are in the language people searched in and do not change with this setting.

What you get back

FieldType
countrystring, null
hoursinteger, null
rankinteger, null
titlestring, null
searchVolumeinteger, null
growthPercentinteger, null
startedAtstring, null
endedAtstring, null
isActiveboolean, null
categoriesarray, null
relatedQueriesarray, null
trendsUrlstring, null
statusstring, null
inputstring, null
errorCodestring, null
errorstring, null