v1

latestOpenAPI 3.1.02026-07-24450694.7 KB

Discover

Returns a list of trending keywords. Trending keywords are displayed in the search result of the app store when the user has not typed anything.

get/keywords/suggestions/trending.json

Query parameters

countrystring

Two letter <a href="https://apptweak.readme.io/reference/country-codes">country code</a>. <br/><b>Default:</b> us

languagestring

Two letter <a href="https://developers.apptweak.com/reference/languages" target="_blank">language code</a>. <br/><b>Default:</b> AppTweak <a href="https://developers.apptweak.com/reference/languages-overview#default-language" target="_blank">default language</a> of the country.

device'iphone' | 'ipad'

Choose a device from iphone, ipad or android. <br/><b>Default:</b> iphone

limitinteger

Number of items you want to fetch. <b>Max limit is 500</b> <br/><b>Default:</b> 100

offsetinteger

Index offset you want to apply to the ranking of results. <br/><b>Default:</b> 0

start_datestring date

Start date of the period in format YYYY-MM-DD<br/><b>Default:</b> 30 days ago

end_datestring date

End date of the period in format YYYY-MM-DD<br/><b>Default:</b> yesterday

Response

200

Example response

{
  "result": {
    "suggestions": [
      {
        "keyword": "google chat",
        "occurrences": 6
      }
    ]
  },
  "metadata": {
    "request": {
      "path": "/api/public/store/keywords/suggestions/trending",
      "params": {
        "device": "iphone",
        "country": "us",
        "language": "us",
        "limit": 10,
        "start_date": "2022-04-03",
        "end_date": "2022-05-02"
      },
      "cost": 101,
      "max_credit_cost": 101,
      "status": 200
    }
  }
}