Category Top Keywords

GET 20 Credits / Request /android/categories/{CATEGORY_ID}/keywords/top.json

The category top keywords gives the most popular keyword for a given category. This is computed by looking at the best keywords for the app present at the top of each category (Top 50).

Category Top Keywords Request

This method returns top keywords for the provided category. We return the top 50 keywords.

Header parameters
X-AppTweak-Key:
Your AppTweak API Key.
Path parameters
CATEGORY_ID:
Category ID for which you want to get the top keywords.
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.

language: string en

The two letter language (ISO Alpha-2) you want to fetch the application in.

en. Get the list of our language codes, here.

type: string free

The type of chart to fetch

Possible values are: free and paid

GET /android/categories/{CATEGORY_ID}/keywords/top.json

Request example
GET /android/categories/PHOTOGRAPHY/keywords/top.json?country=us&language=en&type=free
cURL example
curl -X GET -H "X-Apptweak-Key: ${API_KEY}" "https://api.apptweak.com/android/categories/PHOTOGRAPHY/keywords/top.json?country=us&language=en&type=free"

Category Top Keywords Response

The response is a list of objects. Each of these object is a keyword.

Object properties
keyword: string

Popular keyword for the targetted category.

score: integer

A measure of how popular the keyword is in the category.

stats: hash

Hash providing for each keyword the volume, competiton and kei.

Response Example

{
  "content": [
    {
      "keyword": "photo",
      "score": 45,
      "stats": {
        "competition": 3.654035646280031,
        "volume": 100,
        "kei": 146.34596435371998
      }
    },
    {
      "keyword": "photoshop",
      "score": 43,
      "stats": {
        "competition": 70.93753805239375,
        "volume": 100,
        "kei": 79.06246194760625
      }
    },
    {
      "keyword": "camera",
      "score": 42,
      "stats": {
        "competition": 96.21266433773812,
        "volume": 100,
        "kei": 53.78733566226188
      }
    },
    {
      "keyword": "effects",
      "score": 42,
      "stats": {
        "competition": 93.13942611264515,
        "volume": 100,
        "kei": 56.860573887354846
      }
    },
    {
      "keyword": "picture",
      "score": 38,
      "stats": {
        "competition": 98.50909664313212,
        "volume": 100,
        "kei": 51.490903356867875
      }
    }
  ],
  "metadata": {
    "request": {
      "path": "/android/categories/PHOTOGRAPHY/keywords/top.json",
      "store": "android",
      "params": {
        "country": "us",
        "language": "en",
        "type": "free",
        "id": "PHOTOGRAPHY",
        "format": "json"
      },
      "performed_at": "2018-12-17 10:23:44 UTC"
    },
    "content": {
    }
  }
}