# Google Play Integration via LowCodeAPI
## Overview
Google Play Developer API manages Android apps and reviews.
## Base Endpoint
```
https://api.lowcodeapi.com/googleplay/
```
**Auth Type**: OAuth2.0
## Common Endpoints
### List Reviews
**Method**: `GET` | **LowCodeAPI Path**: `/v1/applications/packageName/reviews`
**Full URL**:
```
https://api.lowcodeapi.com/googleplay/v1/applications/packageName/reviews?packageName={packageName}&api_token={api_token}
```
**Example Request**:
```bash
curl -X GET "https://api.lowcodeapi.com/googleplay/v1/applications/packageName/reviews?packageName=com.example.app&api_token=YOUR_API_TOKEN"
```
**Official Documentation**: [https://developers.google.com/android-publisher](https://developers.google.com/android-publisher)