https://github.com/rajkumaar23/playstore-api
An unofficial API to get real-time details of your android app from Google Play Store.
https://github.com/rajkumaar23/playstore-api
badge playstore playstore-api rating shields
Last synced: 5 months ago
JSON representation
An unofficial API to get real-time details of your android app from Google Play Store.
- Host: GitHub
- URL: https://github.com/rajkumaar23/playstore-api
- Owner: rajkumaar23
- License: mit
- Created: 2020-04-05T05:08:57.000Z (about 6 years ago)
- Default Branch: main
- Last Pushed: 2025-12-23T07:14:35.000Z (5 months ago)
- Last Synced: 2025-12-24T11:19:04.696Z (5 months ago)
- Topics: badge, playstore, playstore-api, rating, shields
- Language: Go
- Homepage: https://play.rajkumaar.co.in
- Size: 324 KB
- Stars: 40
- Watchers: 0
- Forks: 10
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Unofficial Google Play Store API
**Explore android app metadata with ease!**
[](https://github.com/rajkumaar23/playstore-api/actions/workflows/build.yaml)
[](https://github.com/rajkumaar23/playstore-api/actions/workflows/test.yaml)
## Usage
Retrieve comprehensive JSON data for any app from Google Play by making a simple GET request:
```
https://play.rajkumaar.co.in/json?id=
```
Example : https://play.rajkumaar.co.in/json?id=com.dd.doordash
Sample JSON response with all possible details:
```json
{
"packageID": "com.dd.doordash",
"name": "DoorDash - Food Delivery",
"version": "15.156.24",
"downloads": "50,000,000+",
"downloadsExact": 61535856,
"lastUpdated": "Mar 29, 2024",
"launchDate": "Mar 26, 2015",
"developer": "DoorDash",
"screenshots": [
"https://play-lh.googleusercontent.com/b-ZRIvKPErodCjPJo47AB_Fl1dGgOUAGoe03OjER7lzZPffz3Cv0xgMniNHfRYR-bQg",
"https://play-lh.googleusercontent.com/-z9S93iM5RR6xOU8Sj774aNZsSATCZymn3fJiOnzW1VuGteh5vLfgyTjIiKOMhCFfjc",
"https://play-lh.googleusercontent.com/2iNMFwIwCHD8otkfT_AgZU62UNqJziCay3uEVEDFrXmz78wuOf-hTNZbLwdEgShWcfM",
"https://play-lh.googleusercontent.com/UZPWjpQcp-3U2FeUxAIuU9zX2P-z4rhKwmH0hyyr4sUQoKVUotKb_SdhuRBxMW0KsuY",
"https://play-lh.googleusercontent.com/jUcGpu7azj7RwB4brZyq1xoCzyobyUkHwyNcuhfZJK-6DDvm7AFB0ldsTP4Hs2h5UsHg",
"https://play-lh.googleusercontent.com/3Fkc_6o-818jRxVuP42rluJNjx_CQ77Bs8Fx-HDD6jAxRmD-irJLsMAtiIvm3sC8qeZN"
],
"category": "Food \u0026 Drink",
"logo": "https://play-lh.googleusercontent.com/Fvled-zLfL8ER0EBNIk-FnunJCcH2u_T6rdITclOFdU2jpEopdMstZOHP-PtuhP_5coZ",
"banner": "https://play-lh.googleusercontent.com/TmWukTjL87iibmuHXhc9d04Hvul6nErQXE0nRcJvvsiFffDBjE0JmGns57r1x1RihMA",
"privacyPolicy": "https://www.doordash.com/privacy/",
"latestUpdateMessage": "Our mission is to deliver good by connecting people and possibility...",
"website": "https://www.doordash.com/",
"supportEmail": "support@doordash.com",
"rating": "4.6",
"noOfUsersRated": "4,299,422",
"description": "Delivery anywhere you are. DoorDash offers the greatest online selection of your favorite restaurants and stores, facilitating delivery of freshly prepared meals, groceries, OTC medicines, flowers \u0026amp; more...",
}
```
### Known Issues
The API might return `0` for `rating` and `noOfUsersRated` since Google Play Store ratings are region-specific. To retrieve ratings for a particular country, add `&gl=COUNTRY_CODE` to the URL. For instance, use `&gl=IN` to get ratings for an app in India.
> Example : https://play.rajkumaar.co.in/json?id=in.co.rajkumaar.amritarepo&gl=IN
## Integration with [Shields.io](https://shields.io)
Customize your README with dynamic badges for specific attributes. Utilize the following template:
```markdown

```
Supported attributes:
- packageID
- name
- version
- downloads
- downloadsExact
- lastUpdated
- launchDate
- developer
- description
- screenshots
- category
- logo
- banner
- privacyPolicy
- latestUpdateMessage
- website
- supportEmail
- rating
- noOfUsersRated
Explore customization options based on shields.io style parameters. Learn more [here](https://shields.io/).
### Examples
Downloads
```markdown

```

Version
```markdown

```

Developer
```markdown

```

### License
Find the license [here](LICENSE)