https://github.com/facundoolano/google-play-api
Turns google-play-scraper into a RESTful API
https://github.com/facundoolano/google-play-api
Last synced: about 1 year ago
JSON representation
Turns google-play-scraper into a RESTful API
- Host: GitHub
- URL: https://github.com/facundoolano/google-play-api
- Owner: facundoolano
- License: mit
- Created: 2016-02-11T14:26:16.000Z (over 10 years ago)
- Default Branch: main
- Last Pushed: 2024-12-06T04:45:20.000Z (over 1 year ago)
- Last Synced: 2025-04-14T13:58:26.731Z (about 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 118 KB
- Stars: 351
- Watchers: 24
- Forks: 123
- Open Issues: 26
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# google-play-api
Turns [google-play-scraper](https://github.com/facundoolano/google-play-scraper/) into a RESTful API.
To run locally:
```
npm install
npm start
```
## Example requests
The parameters for each endpoint are taken directly from google-play-scraper. For a full reference check its [documentation](https://github.com/facundoolano/google-play-scraper/#usage).
Get the top free apps (default list)
```http
GET /api/apps/
```
Get the top free apps with full detail
```http
GET /api/apps/?fullDetail=true
```
Get the top selling action games in russia
```http
GET /api/apps/?collection=topselling_paid&category=GAME_ACTION&country=ru
```
Get an app detail
```http
GET /api/apps/org.wikipedia/
```
Get an app detail in spanish
```http
GET /api/apps/org.wikipedia/?lang=es
```
Get app required permissions with full descriptions
```http
GET /api/apps/org.wikipedia/permissions/
```
Get app required permissions (short list)
```http
GET /api/apps/org.wikipedia/permissions/?short=true
```
Get app data safety information
```http
GET /api/apps/org.wikipedia/datasafety/
```
Get similar apps
```http
GET /api/apps/org.wikipedia/similar/
```
Get an app's reviews
```http
GET /api/apps/org.wikipedia/reviews/
```
Search apps
```http
GET /api/apps/?q=facebook
```
Get search suggestions for a partial term
```http
GET /api/apps/?suggest=face
```
Get apps by developer
```http
GET /api/developers/Wikimedia%20Foundation/
```
Get categories
```http
GET /api/categories/
```