Category Filter
Search App
Search for iOS apps or Android apps from App Store or Play Store respectively.
Parameter | Type | Description |
---|---|---|
keyword | String | Required. Name of the app to be searched |
platform | String | Required. Use ios for App Store app search and android for Play Store app search |
country | String | Optional. ISO alpha-2 country code. For example, us,ca |
curl
HTTP Request:
Shell Command:
1 2 3 4 5 6 7 8 9 10 |
GET https://<portal>.hexnodemdm.com/api/v1/applications/searchapp/ headers:- Authorization: <api key> Content-Type: application/json Sample Params Data:- { "keyword":"youtube", "platform":"android"' "country":"us"' } |
Shell Command:
1 |
curl -H "Authorization: <your API key>" "https://<portal>.hexnodemdm.com/api/v1/applications/searchapp/?keyword=google&platform=ios" |
HTTP Response:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
{ "count": 50, "results": [ { "name": "Google Drive - free online storage", "identifier": "com.google.Drive", "appstore_id": 507874739, "platform": "ios", "version": "4.2017.13204", "bundle_size": "190176256", "description": "Get started with Google Drive for free and have all your files within reach from any smartphone, tablet, or computer. ", "vendor": "Google, Inc.", "app_type": "store", "category": "Productivity", "primaryGenreId": 6007, "supported_devices": [ "iPad23G-iPad23G", "iPhone4S-iPhone4S" ], "price": "Free", "icon": "http://is3.mzstatic.com/image/thumb/Purple117/v4/19/6c/5a/196c5a62-a895-ece6-50b9-256213d3b48a/source/60x60bb.jpg", "appstore_url": "https://itunes.apple.com/us/app/google-drive-free-online-storage/id507874739?mt=8&uo=4", "average_user_rating": null, "content_rating": "4+", "added": false }, ... ] } |