# Audit Google Play Data Safety Declarations

**Use case:** 

Pull the dataSafety declarations, containsAds and hasInAppPurchases flags for any app list, as JSON. Vet apps in bulk instead of tapping through the store.

## Input

```json
{
  "search_mode": "product",
  "query": "fitness",
  "product_id": "homeworkout.homeworkouts.noequipment",
  "max_results": 100,
  "country": "us",
  "language": "en"
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "string"
  },
  "developer": {
    "label": "Developer",
    "format": "string"
  },
  "version": {
    "label": "Version",
    "format": "string"
  },
  "updatedOn": {
    "label": "Updated on",
    "format": "string"
  },
  "releasedOn": {
    "label": "Released on",
    "format": "string"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewCount": {
    "label": "Review count",
    "format": "integer"
  },
  "downloads": {
    "label": "Downloads",
    "format": "string"
  },
  "price": {
    "label": "Price",
    "format": "string"
  },
  "containsAds": {
    "label": "Contains ads",
    "format": "boolean"
  },
  "hasInAppPurchases": {
    "label": "Has in-app purchases",
    "format": "boolean"
  },
  "requiresAndroid": {
    "label": "Requires Android",
    "format": "string"
  },
  "contentRating": {
    "label": "Content rating",
    "format": "string"
  },
  "thumbnail": {
    "label": "Icon",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Google Play API | Android App Search, Details and Reviews](https://apify.com/johnvc/google-play-api) with a specific input configuration. Visit the [Actor detail page](https://apify.com/johnvc/google-play-api) to learn more, explore other use cases, and run it yourself.