npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@gpc-cli/api

v1.0.40

Published

TypeScript client for all 217 Google Play Developer API v3 endpoints. Typed requests and responses, rate limiting, edit lifecycle management.

Readme

@gpc-cli/api

Typed Google Play Developer API v3 client for TypeScript. Part of GPC.

217 endpoints across edits, releases, tracks, listings, subscriptions, in-app products, purchases, reviews, vitals, reports, users, testers, and Managed Google Play private app publishing (Play Custom App Publishing API, v0.9.64+ — first Android publishing SDK to support this). Built-in rate limiting, retry logic, resumable uploads, and pagination.

Install

npm install @gpc-cli/api @gpc-cli/auth

Quick Start

import { createApiClient } from "@gpc-cli/api";
import { resolveAuth } from "@gpc-cli/auth";

const auth = await resolveAuth({
  serviceAccountPath: "./service-account.json",
});
const client = createApiClient({ auth });

const edit = await client.edits.insert("com.example.app");
const tracks = await client.tracks.list("com.example.app", edit.id);
console.log(tracks);
await client.edits.delete("com.example.app", edit.id);

Client Factories

| Factory | Purpose | | -------------------------------- | ---------------------------------------------------------------- | | createApiClient(options) | Core Play API: apps, releases, listings, monetization, purchases | | createReportingClient(options) | Vitals, crash rates, ANR, error reporting | | createUsersClient(options) | Developer account users and permission grants | | createHttpClient(options) | Low-level HTTP with auth, retry, and rate limiting |

const options: ApiClientOptions = {
  auth, // Required: { getAccessToken(): Promise<string> }
  maxRetries: 3, // Default retry count
  timeout: 30_000, // Request timeout in ms
  onRetry: (entry) => console.warn(`Retry #${entry.attempt}`),
};

Common Workflows

Upload and release

const edit = await client.edits.insert("com.example.app");
await client.bundles.upload("com.example.app", edit.id, "./app.aab");
await client.tracks.update("com.example.app", edit.id, "beta", {
  versionCodes: ["42"],
  status: "completed",
  releaseNotes: [{ language: "en-US", text: "Bug fixes" }],
});
await client.edits.commit("com.example.app", edit.id);

Query crash rates

import { createReportingClient } from "@gpc-cli/api";

const reporting = createReportingClient({ auth });
const crashes = await reporting.queryMetricSet("com.example.app", "crashRateMetricSet", {
  metrics: ["crashRate", "userPerceivedCrashRate"],
  timelineSpec: {
    aggregationPeriod: "DAILY",
    startTime: { year: 2026, month: 1, day: 1 },
    endTime: { year: 2026, month: 3, day: 1 },
  },
});

Manage subscriptions

const { subscriptions } = await client.subscriptions.list("com.example.app");
await client.subscriptions.activateBasePlan("com.example.app", "premium_monthly", "p1m");

Verify purchases

const purchase = await client.purchases.getProduct("com.example.app", "coins_100", token);
await client.purchases.acknowledgeProduct("com.example.app", "coins_100", token);

All API Modules

| Module | Methods | | ----------------------------- | ----------------------------------------------------------------------------------------------------------- | | client.edits | insert, get, validate, commit, delete | | client.details | get, update, patch | | client.bundles | upload, list | | client.apks | upload, list | | client.tracks | list, get, update, patch, create, delete | | client.releases | get, update | | client.countryAvailability | get, list | | client.listings | list, get, update, delete, deleteAll | | client.images | list, upload, delete, deleteAll | | client.subscriptions | list, get, create, patch, archive, activate/deactivate base plans and offers | | client.inappproducts | list, get, create, update, delete, batchGet, batchUpdate, batchDelete | | client.oneTimeProducts | list, get, create, patch, delete, batchGet, batchUpdate, batchDelete, activateOffer, deactivateOffer | | client.purchases | getProduct, acknowledgeProduct, getSubscriptionV2, revokeSubscriptionV2, refund, listVoided, consumeProduct | | client.orders | get, refund | | client.reviews | list, get, reply | | client.testers | get, update | | client.reports | list | | client.monetization | convertRegionPrices | | client.deobfuscation | upload | | client.expansionFiles | get, update, patch, upload | | client.dataSafety | update | | client.deviceTiers | list, get, create | | client.internalAppSharing | uploadBundle, uploadApk | | client.generatedApks | list, download | | client.systemApks | list, variants | | client.externalTransactions | create, get, refund | | client.appRecovery | create, deploy, cancel, list | | reporting.* | queryMetricSet, getAnomalies, searchErrorIssues, searchErrorReports | | users.* | list, get, create, patch, delete, listGrants, createGrant, patchGrant, deleteGrant |

Supported metric sets (pass to reporting.queryMetricSet): crashRateMetricSet, anrRateMetricSet, lmkRateMetricSet, excessiveWakeupRateMetricSet, slowStartRateMetricSet, slowRenderingRateMetricSet, stuckBackgroundWakelockRateMetricSet, errorCountMetricSet.

Pagination

import { paginateAll } from "@gpc-cli/api";

const allReviews = await paginateAll(async (pageToken) => {
  const response = await client.reviews.list("com.example.app", {
    token: pageToken,
    maxResults: 100,
  });
  return {
    items: response.reviews,
    nextPageToken: response.tokenPagination?.nextPageToken,
  };
});

Error Handling

API errors throw ApiError with a code, HTTP status, and actionable suggestion. Retries are automatic for 429 and 5xx with exponential backoff and jitter.

import { ApiError } from "@gpc-cli/api";

try {
  await client.tracks.get("com.example.app", editId, "production");
} catch (error) {
  if (error instanceof ApiError) {
    console.error(error.code); // "API_NOT_FOUND"
    console.error(error.statusCode); // 404
    console.error(error.suggestion); // actionable fix
  }
}

Type Exports

All Google Play API types are exported:

import type {
  PlayApiClient,
  ReportingApiClient,
  UsersApiClient,
  ApiClientOptions,
  Track,
  Release,
  ReleaseStatus,
  Bundle,
  Listing,
  Subscription,
  BasePlan,
  SubscriptionOffer,
  InAppProduct,
  Review,
  ProductPurchase,
  SubscriptionPurchaseV2,
  VoidedPurchase,
  MetricSetQuery,
  MetricSetResponse,
  ErrorIssue,
  User,
  Grant,
  AppLevelPermission,
  DeveloperLevelPermission,
  SubscriptionState,
  OneTimeOfferState,
  OneTimeProductAvailability,
  ImageType,
  Money,
} from "@gpc-cli/api";

Documentation

Licensing

Free to use. Source code is on GitHub at yasserstudio/gpc.