v1

latestOpenAPI 3.1.02026-07-24450694.7 KB

Top Charts - Current

Returns the most recent top chart for the App Store or Google Play Store. The top 500 applications are available for free, paid, or grossing apps.

get/charts/top-results/current.json

Query parameters

categoriesstring required

The category id for which you want to get the top charts. Find <a href="https://apptweak.readme.io/reference/app-store-categories" target="_blank"><b>App Store Categories ids</b></a> and <a href="https://apptweak.readme.io/reference/google-play-store-categories" target="_blank"><b>Google Play Store Categories ids </b></a>

types'free' | 'paid' | 'grossing'

Chart type: free, paid or grossing. <br/><b>Default:</b> free

countrystring

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

device'iphone' | 'ipad' | 'android'

The device you want to fetch the top chart for: iphone, ipad or android. <br/><b>Default:</b> iphone.

limitinteger

The number of apps you want to fetch. <b>Max limit is 500</b>. <br/><b>Default:</b> 100

offsetinteger

The index by which you would like to offset the top chart. <br/><b>Default:</b> 0.

Response

200

OR

Example response

{
  "result": {
    "6000": {
      "free": {
        "value": [
          1113153706
        ],
        "date": "2022-06-08"
      }
    }
  },
  "metadata": {
    "request": {
      "path": "/api/public/store/charts/top-results/current.json",
      "params": {
        "device": "iphone",
        "country": "us",
        "limit": 100,
        "categories": [
          "6000"
        ],
        "types": [
          "free"
        ]
      },
      "cost": 11,
      "max_credit_cost": 11,
      "status": 200
    }
  }
}