MixRank Play Store Apps API

The Play Store Apps API from MixRank — 10 operation(s) for play store apps.

Operations 10

GET /playstore/apks/{package_name}/{version_id} Get APK download details #
GET /playstore/apps List/search the Play Store app directory #
GET /playstore/apps/{pname} Get a Play Store app overview #
GET /playstore/apps/{pname}/images Screenshots for a Play Store app #
GET /playstore/apps/{pname}/rankings Current rankings for a Play Store app #
GET /playstore/apps/{pname}/rankings-history Ranking history for a Play Store app #
GET /playstore/apps/{pname}/sdks SDKs installed in a Play Store app #
GET /playstore/apps/{pname}/namespaces Package namespaces for a Play Store app #
GET /playstore/apps/{pname}/versions Version list for a Play Store app #
GET /playstore/apps/{pname}/versions/{version_code}/apks APKs for a Play Store app version #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/mixrank-play-store-apps-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

mixrank-play-store-apps-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: MixRank Data Account Play Store Apps API
  version: '2'
  description: MixRank's REST Data API exposes the company (Enrich/Match), people, email verification, mobile app & SDK intelligence (iOS App Store and Google Play Store), app rankings, in-app purchases, app privacy labels, and web technographic datasets. Responses are JSON; the API key is passed as a path segment. This specification was generated by the API Evangelist enrichment pipeline from MixRank's published API documentation and is not an official MixRank artifact.
  contact:
    name: MixRank
    url: https://mixrank.com/api/documentation
  x-generated-by: api-evangelist-enrichment
  x-source: https://mixrank.com/api/documentation
servers:
- url: https://api.mixrank.com/v2/json/{api_key}
  description: Production. The API key is supplied as a path segment.
  variables:
    api_key:
      default: YOUR_API_KEY
      description: Your MixRank API key
tags:
- name: Play Store Apps
paths:
  /playstore/apks/{package_name}/{version_id}:
    get:
      operationId: getPlaystoreApk
      summary: Get APK download details
      tags:
      - Play Store Apps
      responses:
        '200':
          description: Successful JSON response
          content:
            application/json:
              schema:
                type: object
        '400':
          $ref: '#/components/responses/Error'
        '401':
          $ref: '#/components/responses/Error'
        '404':
          $ref: '#/components/responses/Error'
        '429':
          $ref: '#/components/responses/Error'
      parameters:
      - name: package_name
        in: path
        required: true
        schema:
          type: string
        description: package_name identifier
      - name: version_id
        in: path
        required: true
        schema:
          type: string
        description: version_id identifier
  /playstore/apps:
    get:
      operationId: listPlaystoreApps
      summary: List/search the Play Store app directory
      tags:
      - Play Store Apps
      responses:
        '200':
          description: Successful JSON response
          content:
            application/json:
              schema:
                type: object
        '400':
          $ref: '#/components/responses/Error'
        '401':
          $ref: '#/components/responses/Error'
        '404':
          $ref: '#/components/responses/Error'
        '429':
          $ref: '#/components/responses/Error'
      parameters:
      - $ref: '#/components/parameters/Offset'
      - $ref: '#/components/parameters/PageSize'
      - $ref: '#/components/parameters/SortField'
      - $ref: '#/components/parameters/SortOrder'
  /playstore/apps/{pname}:
    get:
      operationId: getPlaystoreApp
      summary: Get a Play Store app overview
      tags:
      - Play Store Apps
      responses:
        '200':
          description: Successful JSON response
          content:
            application/json:
              schema:
                type: object
        '400':
          $ref: '#/components/responses/Error'
        '401':
          $ref: '#/components/responses/Error'
        '404':
          $ref: '#/components/responses/Error'
        '429':
          $ref: '#/components/responses/Error'
      parameters:
      - name: pname
        in: path
        required: true
        schema:
          type: string
        description: pname identifier
  /playstore/apps/{pname}/images:
    get:
      operationId: getPlaystoreAppImages
      summary: Screenshots for a Play Store app
      tags:
      - Play Store Apps
      responses:
        '200':
          description: Successful JSON response
          content:
            application/json:
              schema:
                type: object
        '400':
          $ref: '#/components/responses/Error'
        '401':
          $ref: '#/components/responses/Error'
        '404':
          $ref: '#/components/responses/Error'
        '429':
          $ref: '#/components/responses/Error'
      parameters:
      - name: pname
        in: path
        required: true
        schema:
          type: string
        description: pname identifier
  /playstore/apps/{pname}/rankings:
    get:
      operationId: getPlaystoreAppRankings
      summary: Current rankings for a Play Store app
      tags:
      - Play Store Apps
      responses:
        '200':
          description: Successful JSON response
          content:
            application/json:
              schema:
                type: object
        '400':
          $ref: '#/components/responses/Error'
        '401':
          $ref: '#/components/responses/Error'
        '404':
          $ref: '#/components/responses/Error'
        '429':
          $ref: '#/components/responses/Error'
      parameters:
      - name: pname
        in: path
        required: true
        schema:
          type: string
        description: pname identifier
  /playstore/apps/{pname}/rankings-history:
    get:
      operationId: getPlaystoreAppRankingsHistory
      summary: Ranking history for a Play Store app
      tags:
      - Play Store Apps
      responses:
        '200':
          description: Successful JSON response
          content:
            application/json:
              schema:
                type: object
        '400':
          $ref: '#/components/responses/Error'
        '401':
          $ref: '#/components/responses/Error'
        '404':
          $ref: '#/components/responses/Error'
        '429':
          $ref: '#/components/responses/Error'
      parameters:
      - name: pname
        in: path
        required: true
        schema:
          type: string
        description: pname identifier
  /playstore/apps/{pname}/sdks:
    get:
      operationId: getPlaystoreAppSdks
      summary: SDKs installed in a Play Store app
      tags:
      - Play Store Apps
      responses:
        '200':
          description: Successful JSON response
          content:
            application/json:
              schema:
                type: object
        '400':
          $ref: '#/components/responses/Error'
        '401':
          $ref: '#/components/responses/Error'
        '404':
          $ref: '#/components/responses/Error'
        '429':
          $ref: '#/components/responses/Error'
      parameters:
      - name: pname
        in: path
        required: true
        schema:
          type: string
        description: pname identifier
  /playstore/apps/{pname}/namespaces:
    get:
      operationId: getPlaystoreAppNamespaces
      summary: Package namespaces for a Play Store app
      tags:
      - Play Store Apps
      responses:
        '200':
          description: Successful JSON response
          content:
            application/json:
              schema:
                type: object
        '400':
          $ref: '#/components/responses/Error'
        '401':
          $ref: '#/components/responses/Error'
        '404':
          $ref: '#/components/responses/Error'
        '429':
          $ref: '#/components/responses/Error'
      parameters:
      - name: pname
        in: path
        required: true
        schema:
          type: string
        description: pname identifier
  /playstore/apps/{pname}/versions:
    get:
      operationId: getPlaystoreAppVersions
      summary: Version list for a Play Store app
      tags:
      - Play Store Apps
      responses:
        '200':
          description: Successful JSON response
          content:
            application/json:
              schema:
                type: object
        '400':
          $ref: '#/components/responses/Error'
        '401':
          $ref: '#/components/responses/Error'
        '404':
          $ref: '#/components/responses/Error'
        '429':
          $ref: '#/components/responses/Error'
      parameters:
      - name: pname
        in: path
        required: true
        schema:
          type: string
        description: pname identifier
  /playstore/apps/{pname}/versions/{version_code}/apks:
    get:
      operationId: getPlaystoreAppVersionApks
      summary: APKs for a Play Store app version
      tags:
      - Play Store Apps
      responses:
        '200':
          description: Successful JSON response
          content:
            application/json:
              schema:
                type: object
        '400':
          $ref: '#/components/responses/Error'
        '401':
          $ref: '#/components/responses/Error'
        '404':
          $ref: '#/components/responses/Error'
        '429':
          $ref: '#/components/responses/Error'
      parameters:
      - name: pname
        in: path
        required: true
        schema:
          type: string
        description: pname identifier
      - name: version_code
        in: path
        required: true
        schema:
          type: string
        description: version_code identifier
components:
  responses:
    Error:
      description: Error response with an errors array and an appropriate HTTP status code
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  schemas:
    Error:
      type: object
      properties:
        errors:
          type: array
          items:
            type: string
          description: List of error messages
  parameters:
    PageSize:
      name: page_size
      in: query
      required: false
      schema:
        type: integer
      description: Results per page (varies by endpoint, typically 1-100)
    SortField:
      name: sort_field
      in: query
      required: false
      schema:
        type: string
      description: Field to sort by
    Offset:
      name: offset
      in: query
      required: false
      schema:
        type: integer
        default: 0
      description: Number of results to skip
    SortOrder:
      name: sort_order
      in: query
      required: false
      schema:
        type: string
        enum:
        - asc
        - desc
      description: Sort direction
externalDocs:
  description: MixRank API documentation
  url: https://mixrank.com/api/documentation