Google Play Console Developer Reporting V1alpha1 API

The V1alpha1 API from Google Play Console Developer Reporting — 4 operation(s) for v1alpha1.

Operations 4

GET /v1alpha1/apps:search Google Play Console Developer Reporting Search apps #
GET /v1alpha1/{name}/crashRateMetricSet Google Play Console Developer Reporting Get crash rate metric set #
GET /v1alpha1/{name}/anrRateMetricSet Google Play Console Developer Reporting Get ANR rate metric set #
GET /v1alpha1/{name}/errorCountMetricSet Google Play Console Developer Reporting Get error count metric set #

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/google-play-console-v1alpha1-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 form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

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

OpenAPI Specification

google-play-console-v1alpha1-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Google Play Console Developer Reporting Google Play Developer Reporting V1alpha1 API
  description: The Play Developer Reporting API provides programmatic access to Play Console reporting data, including app quality metrics such as crash rates, ANR rates, and other performance indicators.
  version: v1alpha1
  contact:
    name: Google
    url: https://developers.google.com/play/developer/reporting
  license:
    name: Google APIs Terms of Service
    url: https://developers.google.com/terms
servers:
- url: https://playdeveloperreporting.googleapis.com
  description: Play Developer Reporting API server
security:
- oauth2:
  - https://www.googleapis.com/auth/playdeveloperreporting
tags:
- name: V1alpha1
paths:
  /v1alpha1/apps:search:
    get:
      summary: Google Play Console Developer Reporting Search apps
      description: Searches for apps accessible by the caller.
      operationId: searchApps
      parameters:
      - name: pageSize
        in: query
        schema:
          type: integer
      - name: pageToken
        in: query
        schema:
          type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SearchAppsResponse'
      tags:
      - V1alpha1
  /v1alpha1/{name}/crashRateMetricSet:
    get:
      summary: Google Play Console Developer Reporting Get crash rate metric set
      description: Describes the properties of the crash rate metric set.
      operationId: getCrashRateMetricSet
      parameters:
      - name: name
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MetricSet'
      tags:
      - V1alpha1
  /v1alpha1/{name}/anrRateMetricSet:
    get:
      summary: Google Play Console Developer Reporting Get ANR rate metric set
      description: Describes the properties of the ANR rate metric set.
      operationId: getAnrRateMetricSet
      parameters:
      - name: name
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MetricSet'
      tags:
      - V1alpha1
  /v1alpha1/{name}/errorCountMetricSet:
    get:
      summary: Google Play Console Developer Reporting Get error count metric set
      description: Describes the properties of the error count metric set.
      operationId: getErrorCountMetricSet
      parameters:
      - name: name
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MetricSet'
      tags:
      - V1alpha1
components:
  schemas:
    MetricSet:
      type: object
      properties:
        name:
          type: string
          description: The resource name of the metric set.
        freshnessPeriod:
          type: string
          description: The expected freshness period for the metric set.
        metrics:
          type: array
          items:
            type: object
            properties:
              metricId:
                type: string
              decimalPrecision:
                type: integer
    App:
      type: object
      properties:
        name:
          type: string
          description: The resource name.
        packageName:
          type: string
          description: The app package name.
        displayName:
          type: string
          description: The app display name.
    SearchAppsResponse:
      type: object
      properties:
        apps:
          type: array
          items:
            $ref: '#/components/schemas/App'
        nextPageToken:
          type: string
  securitySchemes:
    oauth2:
      type: oauth2
      flows:
        authorizationCode:
          authorizationUrl: https://accounts.google.com/o/oauth2/auth
          tokenUrl: https://oauth2.googleapis.com/token
          scopes:
            https://www.googleapis.com/auth/playdeveloperreporting: Access Play developer reporting data