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.
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.
The two letter country code (ISO Alpha-2) you want to fetch the app in.
us. Get the list of our country codes, here.
The device you want to fetch the application for.
iphone or ipad
GET /ios/keywords/trendings.json?country=us&device=iphone
curl -X GET -H "X-Apptweak-Key: ${API_KEY}" "https://api.apptweak.com/ios/keywords/trendings.json?country=us&device=iphone"
The response is a list of objects. Each of these object is a trending keywords.
Popular keyword for the targetted country.
{
"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": {
}
}
}