# Google Play应用数据API：搜索与详情

**Use case:** 

关键词搜索返回应用排名、开发者、评分与安装量区间；按包名查询版本、更新日期、内容分级、广告与内购标记及数据安全声明。支持按国家与语言查询。

## Input

```json
{
  "search_mode": "search",
  "query": "meditation",
  "max_results": 30,
  "country": "us",
  "language": "en"
}
```

## Output

```json
{
  "position": {
    "label": "Position",
    "format": "integer"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "developer": {
    "label": "Developer",
    "format": "string"
  },
  "category": {
    "label": "Category",
    "format": "string"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "downloads": {
    "label": "Downloads",
    "format": "string"
  },
  "productId": {
    "label": "Package name",
    "format": "string"
  },
  "url": {
    "label": "URL",
    "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.