Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dweinstein/node-aptoide
aptoide app store APK download
https://github.com/dweinstein/node-aptoide
Last synced: 2 months ago
JSON representation
aptoide app store APK download
- Host: GitHub
- URL: https://github.com/dweinstein/node-aptoide
- Owner: dweinstein
- Created: 2015-07-31T17:52:40.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-07-31T20:25:38.000Z (over 9 years ago)
- Last Synced: 2024-11-02T02:34:54.352Z (3 months ago)
- Language: JavaScript
- Size: 117 KB
- Stars: 25
- Watchers: 7
- Forks: 6
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-hacking-tools - Aptoide downloader (Node) - download apps from Aptoide third-party Android market (Android Security / Market Crawlers)
README
# SYNOPSIS
Download APKs from [aptoide](http://m.aptoide.com/).
# INSTALLATION
```sh
$ npm install -g aptoide
```# USAGE
## DETAILS
Get meta data for the package id.
```sh
$ aptoide-details com.viber.voip | jq '.'
{
"status": "OK",
"apk": {
"id": 29752,
"repo": "sambat",
"package": "com.viber.voip",
"icon": "http://pool.img.aptoide.com/sambat/aac5778dc22a11a75036e4ad22c35d33.png",
"icon_hd": "http://pool.img.aptoide.com/sambat/cc3148e57a2928cd1ada1bbea553c3c2_icon.png",
"minSdk": 5,
"minScreen": "small",
...
```## DOWNLOAD
Download APK from the store using package id.
```sh
$ aptoide-download -o foo.apk com.viber.voip
or
$ aptoide-download --id com.viber.voip > foo.apk
```