> ## 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 Rankings

> Fetch normalized rankings data from Google Play.

# Get Google Play Rankings

Fetch normalized rankings 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/collection/topselling_free"
  ],
  "results_limit": 3
}
```

## Use with MCP

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

<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-rankings",
    "status": "succeeded",
    "result_count": 1,
    "credits_amount": 0.15,
    "results": {
      "schema_id": "app",
      "schema_version": "1.0",
      "items": [
        {
          "id": "com.openai.chatgpt",
          "platform": "google-play",
          "resource": "app-rankings",
          "type": "app-ranking",
          "url": "https://play.google.com/store/apps/details/ChatGPT?id=com.openai.chatgpt&hl=en",
          "published_at": "2026-08-17T11:41:08.164000Z",
          "collected_at": "2026-08-17T11:41:09.748230Z",
          "app_id": "com.openai.chatgpt",
          "name": "ChatGPT",
          "text": "Introducing ChatGPT for Android: OpenAI's latest advancements at your fingertips.",
          "developer": "OpenAI",
          "category": "Productivity",
          "rating": 4.7,
          "reviews_count": 52491325,
          "installs": "1477728065",
          "price": null,
          "rank": 1,
          "media": [
            {
              "type": "image",
              "url": "https://play-lh.googleusercontent.com/dPc3vh4x7L3gJ3_vFLT_dw9BY9ZNXEjcu3eBlXOkkn3klpNfUo3perqmeFqrmFUNB11IcU94wmbgkL9uQ4KReoA",
              "thumbnail_url": null,
              "width": null,
              "height": null,
              "duration_seconds": null
            }
          ]
        }
      ],
      "limit": 20,
      "next_cursor": null,
      "has_more": false
    }
  }
}
```


## OpenAPI

````yaml api-manual/agent-api/agent-api.json POST /v1/google-play/app-rankings
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-rankings:
    post:
      tags:
        - google-play
      summary: Google Play Rankings API
      description: Collect public Google Play category rankings.
      operationId: socq_google_play_app_rankings
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $schema: https://json-schema.org/draft/2020-12/schema
              type: object
              additionalProperties: false
              properties:
                results_limit:
                  type: integer
                  minimum: 1
                  maximum: 2000
                  default: 100
                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

````