Returns the list of top Android applications by AppAware.
http://dev.appaware.com/1/app/top.json
| Name | Required | Description | Example value | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| client_token | required | A client token for using this API. You can get it by registering to the AppAware API service for Developers. | 12345 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| d | optional |
The time frame (i.e. delta from current time) for retrieving top applications.
|
hour | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| c | optional |
The category for top applications.
|
7 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| t | optional |
Type of events for top applications.
|
installed | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| app_info | optional | How much app information to return for each app.
|
extended | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| num | optional | Number of applications returned.
|
20 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| page | optional | Pagination parameter to combine with num.
|
3 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| callback | optional | If supplied, the response will use the JSONP format with a callback of the given name. |
http://dev.appaware.com/1/app/top.json?d=hour&t=popular&c=0&cc=worldwide&num=5&page=1&client_token=YOUR_CLIENT_TOKEN
{
"page": 1,
"refresh_url": "http://dev.appaware.com/1/app/top.json?d=hour&t=popular&c=0&cc=worldwide&num=5&page=1&client_token=YOUR_CLIENT_TOKEN",
"more_url": "http://dev.appaware.com/1/app/top.json?d=hour&t=popular&c=0&cc=worldwide&num=5&page=2&client_token=YOUR_CLIENT_TOKEN",
"number_results": 5,
"url" : http://appaware.com/top-android-apps/popular/0/hour/worldwide,
"results": [
{
"package_name": "com.box.android",
"name": "Box",
"icon": "http://d2lh3rxs7crswz.cloudfront.net/com.box.android.png"
},
{
"package_name": "com.lsdroid.cerberus",
"name": "Cerberus",
"icon": "http://d2lh3rxs7crswz.cloudfront.net/com.lsdroid.cerberus.png"
},
{
"package_name": "com.fingersoft.cartooncamera",
"name": "Cartoon Camera",
"icon": "http://d2lh3rxs7crswz.cloudfront.net/com.fingersoft.cartooncamera.png"
},
{
"package_name": "com.skype.raider",
"name": "Skype - free video calling",
"icon": "http://d2lh3rxs7crswz.cloudfront.net/com.skype.raider.png"
},
{
"package_name": "com.autodesk.autocadws",
"name": "AutoCAD WS",
"icon": "http://d2lh3rxs7crswz.cloudfront.net/com.autodesk.autocadws.png"
}
]
}
AppAware DEV API returns a standardized JSON response in case of an invalid request. (only Internal Server Error (500) may fail to return one)
http://dev.appaware.com/1/top.json?d=hour&t=popular&c=0&cc=worldwide&num=5&page=1&client_token=WRONG_CLIENT_TOKEN
{
"status_code": 400,
"message": "Please provide a valid client_token",
"request": "https://dev.appaware.com/1/app/top.json?d=day&t=popular&c=0&cc=worldwide&num=5&page=1&client_token=WRONG_CLIENT_TOKEN"
}