Google Play Developer Androidpublisher API

The Androidpublisher API from Google Play Developer — 4 operation(s) for androidpublisher.

Operations 4

POST /androidpublisher/v3/applications/{packageName}/edits Google Play Developer Create a new edit #
GET /androidpublisher/v3/applications/{packageName}/inappproducts Google Play Developer List in-app products #
GET /androidpublisher/v3/applications/{packageName}/purchases/products/{productId}/tokens/{token} Google Play Developer Get purchase status #
GET /androidpublisher/v3/applications/{packageName}/purchases/subscriptionsv2/tokens/{token} Google Play Developer Get subscription status #

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-androidpublisher-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-androidpublisher-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Google Play Developer Androidpublisher API
  description: The Google Play Android Developer API allows developers to perform publishing and app-management tasks. It provides access to app publishing workflows, in-app product management, subscription handling, and purchase verification.
  version: v3
  contact:
    name: Google
    url: https://developers.google.com/android-publisher
  license:
    name: Google APIs Terms of Service
    url: https://developers.google.com/terms
servers:
- url: https://androidpublisher.googleapis.com
  description: Google Play Developer API server
security:
- oauth2:
  - https://www.googleapis.com/auth/androidpublisher
tags:
- name: Androidpublisher
paths:
  /androidpublisher/v3/applications/{packageName}/edits:
    post:
      summary: Google Play Developer Create a new edit
      description: Creates a new edit for an app.
      operationId: createEdit
      parameters:
      - name: packageName
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AppEdit'
      tags:
      - Androidpublisher
  /androidpublisher/v3/applications/{packageName}/inappproducts:
    get:
      summary: Google Play Developer List in-app products
      description: Lists all in-app products for a given app.
      operationId: listInAppProducts
      parameters:
      - name: packageName
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InAppProductList'
      tags:
      - Androidpublisher
  /androidpublisher/v3/applications/{packageName}/purchases/products/{productId}/tokens/{token}:
    get:
      summary: Google Play Developer Get purchase status
      description: Checks the purchase and consumption status of an in-app item.
      operationId: getPurchaseStatus
      parameters:
      - name: packageName
        in: path
        required: true
        schema:
          type: string
      - name: productId
        in: path
        required: true
        schema:
          type: string
      - name: token
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProductPurchase'
      tags:
      - Androidpublisher
  /androidpublisher/v3/applications/{packageName}/purchases/subscriptionsv2/tokens/{token}:
    get:
      summary: Google Play Developer Get subscription status
      description: Gets the latest subscription purchase status.
      operationId: getSubscriptionStatus
      parameters:
      - name: packageName
        in: path
        required: true
        schema:
          type: string
      - name: token
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SubscriptionPurchaseV2'
      tags:
      - Androidpublisher
components:
  schemas:
    InAppProduct:
      type: object
      properties:
        packageName:
          type: string
        sku:
          type: string
        status:
          type: string
        purchaseType:
          type: string
        defaultPrice:
          type: object
          properties:
            priceMicros:
              type: string
            currency:
              type: string
    SubscriptionPurchaseV2:
      type: object
      properties:
        kind:
          type: string
        regionCode:
          type: string
        latestOrderId:
          type: string
        lineItems:
          type: array
          items:
            type: object
            properties:
              productId:
                type: string
              expiryTime:
                type: string
    InAppProductList:
      type: object
      properties:
        inappproduct:
          type: array
          items:
            $ref: '#/components/schemas/InAppProduct'
    ProductPurchase:
      type: object
      properties:
        purchaseState:
          type: integer
        consumptionState:
          type: integer
        developerPayload:
          type: string
        orderId:
          type: string
        purchaseType:
          type: integer
    AppEdit:
      type: object
      properties:
        id:
          type: string
          description: The unique identifier of the edit.
        expiryTimeSeconds:
          type: string
          description: The time at which the edit will expire.
  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/androidpublisher: Manage your Android apps