> ## Documentation Index
> Fetch the complete documentation index at: https://docs.socq.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Google Play Apps

> Fetch normalized apps data from Google Play.

# Get Google Play Apps

Fetch normalized apps data from Google Play.

Each successfully returned standard result costs `0.15` credits. List endpoints reserve by `results_limit` and settle against the actual result count.

## Request Body

```json theme={"system"}
{
  "urls": [
    "https://play.google.com/store/apps/details?id=com.openai.chatgpt"
  ]
}
```

## Use with MCP

| Interface      | Value                                                    |
| -------------- | -------------------------------------------------------- |
| REST           | `POST /v1/google-play/app-detail`                        |
| Compact MCP    | `socq_execute` with `endpoint: "google-play/app-detail"` |
| Typed MCP      | `socq_google_play_app_detail`                            |
| Exact-tool URL | `https://api.socq.ai/mcp?tools=google_play_apps`         |
| CLI            | `socq google-play app-detail`                            |

<Info>
  A successful request returns a `task_id`. Poll it with `socq_get_task`, then read normalized records from `results.items`.
</Info>

## Result Fields

| Field             | Type            | Nullable | Description                                                              |
| ----------------- | --------------- | -------- | ------------------------------------------------------------------------ |
| `id`              | `string`        | Yes      | Unique identifier for this result item.                                  |
| `platform`        | `string`        | No       | Platform the result belongs to, such as `instagram` or `linkedin`.       |
| `resource`        | `string`        | No       | SocQ resource represented by the result, such as `videos` or `comments`. |
| `type`            | `string`        | No       | Category of the result item, such as `video`, `post`, or `comment`.      |
| `url`             | `string`        | Yes      | Public URL of the result item when available.                            |
| `published_at`    | `string`        | Yes      | Time the source item was published, in ISO 8601 format when available.   |
| `collected_at`    | `string`        | No       | Time SocQ collected or processed this result, in ISO 8601 format.        |
| `app_id`          | `string`        | Yes      | Public application identifier or package name.                           |
| `name`            | `string`        | Yes      | Application name.                                                        |
| `text`            | `string`        | Yes      | Primary text associated with the result item.                            |
| `developer`       | `string`        | Yes      | Application developer or publisher name.                                 |
| `category`        | `string`        | Yes      | Category assigned to the result item.                                    |
| `rating`          | `number`        | Yes      | Rating value reported by the platform.                                   |
| `reviews_count`   | `integer`       | Yes      | Number of reviews.                                                       |
| `installs`        | `string`        | Yes      | Install or download range reported by the store.                         |
| `price`           | `object`        | Yes      | Price information for the listing or product.                            |
| `price`           | `object`        | No       | Field value in the standard result.                                      |
| `price.amount`    | `number`        | Yes      | Numeric monetary amount.                                                 |
| `price.currency`  | `string`        | Yes      | Currency code or symbol reported for the monetary value.                 |
| `price.formatted` | `string`        | Yes      | Human-readable price or salary text.                                     |
| `rank`            | `integer`       | Yes      | Position of the result in its source list or ranking.                    |
| `media`           | `array<object>` | Yes      | Images, videos, or other media attached to the result.                   |

## Completed Task Response

```json theme={"system"}
{
  "code": 200,
  "message": "success",
  "data": {
    "task_id": "task_example",
    "public_id": "google-play/app-detail",
    "status": "succeeded",
    "result_count": 0,
    "credits_amount": 0,
    "results": {
      "schema_id": "app",
      "schema_version": "1.0",
      "items": [],
      "limit": 20,
      "next_cursor": null,
      "has_more": false
    }
  }
}
```


## OpenAPI

````yaml api-manual/agent-api/agent-api.json POST /v1/google-play/app-detail
openapi: 3.1.0
info:
  title: SocQ Agent API
  version: v1-d93e6d4f8368
  description: Asynchronous social data API generated from the SocQ Capability Registry.
servers:
  - url: https://api.socq.ai
security: []
paths:
  /v1/google-play/app-detail:
    post:
      tags:
        - google-play
      summary: Google Play App Details API
      description: Collect public Google Play app details.
      operationId: socq_google_play_app_detail
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $schema: https://json-schema.org/draft/2020-12/schema
              type: object
              additionalProperties: false
              properties:
                urls:
                  type: array
                  items:
                    type: string
                    minLength: 1
                  minItems: 1
                  description: Public profile or content URLs.
              required:
                - urls
      responses:
        '200':
          description: Task accepted
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AgentSubmitResponse'
        '422':
          description: Input validation failed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AgentValidationErrorResponse'
      security:
        - bearerAuth: []
        - apiKeyAuth: []
components:
  schemas:
    AgentSubmitResponse:
      type: object
      properties:
        code:
          type: integer
          const: 200
        data:
          type: object
          properties:
            task_id:
              type: string
            status:
              type: string
            created_time:
              type:
                - string
                - 'null'
          required:
            - task_id
            - status
    AgentValidationErrorResponse:
      type: object
      properties:
        code:
          type: integer
          const: 422
        error:
          type: object
          properties:
            message:
              type: string
            type:
              type: string
            details:
              type: object
          required:
            - message
            - type
      required:
        - code
        - error
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````