Retrieving a List of Applications from a User Repository
This endpoint is deprecated. See: https://www.aptoide.com/webservices/docs/7/apps/get
URLS:
POST
GET
Supported Formats:
JSON XMLSupported Methods:
GET POSTDescription:
Returns a list of all existing applications from a user repository.Arguments:
token | Developer token |
repo | Repository name |
orderby | Keyword to order entries ('alphabetical' or 'recent', optional) |
limit | Numerical value to filter a number of entries (mandatory if orderby is used) |
offset | Numerical value to skip a number of entries (mandatory if orderby is used) |
mode | Return mode/format ('xml' or 'json') |
Response:
status | Request result status (OK or FAIL) |
errors | Errors log from the request (not existent when status="OK") |
listing | List of retrieved applications |
name | Application name |
path | Application file URL |
ver | Application version name |
vercode | Application version code |
apkid | Application package ID |
icon | Application icon URL |
date | Application creation date, in year-month-day format (example: 2011-02-25) |
md5h | Application md5sum |
sz | Application size (in Kilobytes) |
Using the Web Service (examples):
Sample Response - XML:
Sample success
<response>
<status>OK</status>
<listing>
<entry>
<name>my-app</name>
<path>http://pool.apk.aptoide.com/my-repo/
com-myapp-65-55555-3f6601d20550afa1a6709c2d88917939.apk</path>
<ver>1.9.5</ver>
<vercode>65</vercode>
<apkid>my.app.com</apkid>
<icon>http://mirror.apk07.aptoide.com/apks/7/
aptoide-f63c6f2461f65f32b6d144d6d2ff982e/my-repo/icons/
91b09eb0cf182e217f7ecc971616fd89.png</icon>
<date>2011-02-21</date>
<md5h>3f6601d20550afa1a6709c2d88917939</md5h>
<sz>55</sz>
</entry>
</listing>
</response>
<status>OK</status>
<listing>
<entry>
<name>my-app</name>
<path>http://pool.apk.aptoide.com/my-repo/
com-myapp-65-55555-3f6601d20550afa1a6709c2d88917939.apk</path>
<ver>1.9.5</ver>
<vercode>65</vercode>
<apkid>my.app.com</apkid>
<icon>http://mirror.apk07.aptoide.com/apks/7/
aptoide-f63c6f2461f65f32b6d144d6d2ff982e/my-repo/icons/
91b09eb0cf182e217f7ecc971616fd89.png</icon>
<date>2011-02-21</date>
<md5h>3f6601d20550afa1a6709c2d88917939</md5h>
<sz>55</sz>
</entry>
</listing>
</response>
Sample Response - JSON:
Sample success
{
"status": "OK",
"listing":
[
{
"name": "my-app",
"path": "http://pool.apk.aptoide.com/my-repo/
com-myapp-65-55555-3f6601d20550afa1a6709c2d88917939.apk",
"ver": "1.9.5",
"vercode": 65,
"apkid": my.app.com,
"icon": "http://mirror.apk07.aptoide.com/apks/7/
aptoide-f63c6f2461f65f32b6d144d6d2ff982e/my-repo/icons/
91b09eb0cf182e217f7ecc971616fd89.png",
"date": "2011-02-21",
"md5h": "3f6601d20550afa1a6709c2d88917939",
"sz": 55,
}
]
}
"status": "OK",
"listing":
[
{
"name": "my-app",
"path": "http://pool.apk.aptoide.com/my-repo/
com-myapp-65-55555-3f6601d20550afa1a6709c2d88917939.apk",
"ver": "1.9.5",
"vercode": 65,
"apkid": my.app.com,
"icon": "http://mirror.apk07.aptoide.com/apks/7/
aptoide-f63c6f2461f65f32b6d144d6d2ff982e/my-repo/icons/
91b09eb0cf182e217f7ecc971616fd89.png",
"date": "2011-02-21",
"md5h": "3f6601d20550afa1a6709c2d88917939",
"sz": 55,
}
]
}