Trending Keywords

GET 30 Credits / Request /ios/keywords/trendings.json

The trending keywords are the list of 10 suggested keywords search displayed in the search result of the appstore when the user has not typed anything.

Trending Keywords Request

This method returns the last trending keywords we found. We fetch trending keywords at least once per day. There are always 10 trending keywords per country, and the trending keywords are shared regardeless of the language.

Header parameters
X-AppTweak-Key:
Your AppTweak API Key.
Query parameters
country: string us

The two letter country code (ISO Alpha-2) you want to fetch the app in.

us. Get the list of our country codes, here.

device: string iphone

The device you want to fetch the application for.

iphone or ipad

GET /ios/keywords/trendings.json

Request example
GET /ios/keywords/trendings.json?country=us&device=iphone
cURL example
curl -X GET -H "X-Apptweak-Key: ${API_KEY}" "https://api.apptweak.com/ios/keywords/trendings.json?country=us&device=iphone"

Trending Keywords Response

The response is a list of objects. Each of these object is a trending keywords.

Object properties
trend: string

Popular keyword for the targetted country.

Response Example

{
  "content": [
    {
      "trend": "candy crush"
    },
    {
      "trend": "pokemon go"
    },
    {
      "trend": "heads up"
    },
    {
      "trend": "roblox"
    },
    {
      "trend": "tinder"
    },
    {
      "trend": "pandora"
    },
    {
      "trend": "dazn"
    },
    {
      "trend": "nfl network app"
    },
    {
      "trend": "pixaloop"
    },
    {
      "trend": "facetune2"
    }
  ],
  "metadata": {
    "request": {
      "path": "/ios/keywords/trendings.json",
      "store": "ios",
      "params": {
        "country": "us",
        "device": "iphone",
        "language": "en",
        "format": "json"
      },
      "performed_at": "2018-12-17 10:32:47 UTC"
    },
    "content": {
    }
  }
}