Product

How Jentic Works

From API assessment to production deployment in four simple steps.

Product Overview

PLATFORM

Jentic OneSelf-hosted, open-source control plane between your agents and any APIAPI DirectoryBrowse 10,000+ APIs ready for AI agent integrationAPI ScorecardAssess your APIs for AI-readiness with automated scoringAgentic SandboxSafely simulate AI agents with your production APIsJenticSign in to the Jentic web app

CAPABILITIES

IntegrationConnect AI agents to your existing systemsWorkflowsDiscover and capture successful agent workflowsGovernanceDefine, observe, and enforce AI policies

TOOLS

Arazzo UIVisualize Arazzo workflows as interactive documentationArazzo EditorBuild and edit multi-step API workflows visually
Pricing
Developers

GET STARTED

DocumentationGuides and API referenceQuickstartGet up and running in minutes

COMMUNITY

GitHubOpen source projects and examples
Resources
BlogLatest articles and insightsPress & MediaBrand assets and press contactOpen StandardsBuilt on open specs. Never locked in.NewsletterAPIs, AI agents, mixed with architecture and strategy.
Company
About UsOur mission and teamCareersJoin our teamContactGet in touch
Install Jentic OneBook a Demo
How Jentic WorksJentic OneAPI DirectoryAPI ScorecardAgentic SandboxJenticIntegrationWorkflowsGovernanceArazzo UIArazzo Editor
Pricing
DocumentationQuickstartGitHub
BlogPress & MediaOpen StandardsNewsletter
About UsCareersContact
Request a demoInstall Jentic One
Jentic
For Enterprises
  • Product Overview
  • Agentic Sandbox
  • Book a Demo
For Developers
  • Jentic One
  • Documentation
  • GitHub
Company
  • About Jentic
  • Careers
  • Contact Us
ISO/IEC 27001:2022 certification badge issued by Prescient Security

Information Security Management System

Certified to ISO/IEC 27001:2022 by Prescient Security

Terms & Conditions•Privacy Policy•
© 2026 Jentic. All rights reserved.
APIs / Media / Google / Google Play Games Services Publishing API
Google Play Games Services Publishing API logo

Google Play Games Services Publishing API

Browse all Google APIs
✓ Official Vendor SpecMediaContent Deliveryoauth210 EndpointsREST

For Agents

Define and update Play Games achievements and leaderboards programmatically, including titles, descriptions, and ordering. Built for game tooling that needs configuration-as-code.

Use for: Create a new achievement for my game, Update the description of an existing achievement, List all leaderboards configured for my application, Delete an achievement that is no longer used

Not supported: Does not award achievements, post scores, or reset player state — use the Games API for runtime and the Games Management API for resets; this API is for configuration only.

The Google Play Games Services Publishing API lets developers configure their games' Play Games Services resources programmatically. It manages the definition of achievements and leaderboards under an application, including localised metadata, sort order, and image references. Use it from build pipelines to keep game configuration in source control and apply changes without clicking through the Play Console.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the Google Play Games Services Publishing API to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Google Play Games Services Publishing API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.

Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.

1

Step 1: Jentic One Host machine

# On the machine that will host your Jentic One instance:
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
2

Step 2: Agent machine

# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
jentic register       # connects your agent to your Jentic One instance

Jentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.

Capabilities

What an agent can do with Google Play Games Services Publishing API.

Create new achievements under a game application

Update achievement metadata such as name, description, and image

Delete achievements that are no longer needed

Create and update leaderboards with sort order and time scopes

List all achievements or leaderboards configured for an application

Retrieve a single achievement or leaderboard by id

Use Cases

Patterns agents use Google Play Games Services Publishing API for, with concrete tasks.

★ Configuration-as-Code for Game Releases

Game studios that ship frequent updates want their Play Games configuration in version control alongside game code. The Publishing API lets a CI pipeline reconcile a JSON or YAML manifest of achievements and leaderboards against the live application configuration, creating, updating, or deleting entries as needed. This removes manual Play Console clicks and keeps environments consistent.

Call POST /games/v1configuration/applications/{applicationId}/achievements for each new achievement defined in the release manifest.

Localise Achievement Strings

Games shipping in multiple languages need localised achievement titles and descriptions. The achievements update endpoint accepts localised string sets, so a translation pipeline can push new locales into Play Games without engineering involvement. The configuration is then served by the Play Games SDK in the player's language at runtime.

Call PUT /games/v1configuration/achievements/{achievementId} with an updated achievementName containing localised string entries for additional locales.

Audit Leaderboard Configuration

Live operations teams need to verify which leaderboards are configured against an application before a tournament. The list leaderboards endpoint returns every leaderboard with sort order, score format, and identifier, enabling automated checks that the right boards exist before enabling them in the client.

Call GET /games/v1configuration/applications/{applicationId}/leaderboards and verify the expected leaderboard ids and sort orders are present.

Agent-Generated Achievement Sets

An AI assistant for game designers can propose an achievement set for a new game mode and apply it to the Play Console via Jentic. The agent searches for the create achievement operation, loads its schema, and creates each achievement with name, description, and points. The designer reviews the live configuration in the Play Console before publishing.

Use Jentic to search 'create a play games achievement', load the schema for POST /games/v1configuration/applications/{applicationId}/achievements, and execute it for each generated achievement.

Key Endpoints

10 endpoints — the google play games services publishing api lets developers configure their games' play games services resources programmatically.

METHOD

PATH

DESCRIPTION

GET

/games/v1configuration/applications/{applicationId}/achievements

List achievement configurations

POST

/games/v1configuration/applications/{applicationId}/achievements

Create an achievement

GET

/games/v1configuration/achievements/{achievementId}

Get a single achievement configuration

PUT

/games/v1configuration/achievements/{achievementId}

Update an achievement configuration

DELETE

/games/v1configuration/achievements/{achievementId}

Delete an achievement

GET

/games/v1configuration/applications/{applicationId}/leaderboards

List leaderboard configurations

POST

/games/v1configuration/applications/{applicationId}/leaderboards

Create a leaderboard

GET

/games/v1configuration/applications/{applicationId}/achievements

List achievement configurations

POST

/games/v1configuration/applications/{applicationId}/achievements

Create an achievement

GET

/games/v1configuration/achievements/{achievementId}

Get a single achievement configuration

PUT

/games/v1configuration/achievements/{achievementId}

Update an achievement configuration

DELETE

/games/v1configuration/achievements/{achievementId}

Delete an achievement

GET

/games/v1configuration/applications/{applicationId}/leaderboards

List leaderboard configurations

POST

/games/v1configuration/applications/{applicationId}/leaderboards

Create a leaderboard

Why Jentic?

Three things that make agents converge on Jentic-routed access.

Credential management

Credential isolation

Developer OAuth credentials are stored encrypted in the Jentic vault. Agents receive scoped tokens that can configure Play Games resources only for the authorised developer account.

Intent-based discovery

Intent-based discovery

Agents search by intent (e.g., 'create a play games achievement') and Jentic returns the matching configuration operation with its full request schema.

Time to first call

Time to first call

Direct integration: 1-2 days for OAuth, achievement schema, and reconciliation logic. Through Jentic: under 30 minutes.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Complementary

Google Play Games Services API

→

Awards achievements and posts scores at runtime against configurations made here.

Use the Games API for runtime player operations; this Publishing API for definitions.

Complementary

Google Play Games Services Management API

→

Resets achievements and scores during testing.

Use Management to clear state in test accounts after configuring with this API.

Complementary

Google Play Developer API

→

Manages app listings and releases on the Play Store.

Use Android Publisher for store metadata and releases; this API for in-game configurations.

FAQs

Specific to using Google Play Games Services Publishing API through Jentic.

What authentication does the Play Games Services Publishing API use?

It uses Google OAuth 2.0 with the androidpublisher scope, scoped to the developer account that owns the application. Through Jentic, those credentials live encrypted in the vault and agents receive only scoped bearer tokens.

Can I create achievements with this API?

Yes. Use POST /games/v1configuration/applications/{applicationId}/achievements with the achievement name, description, points, and image references to create a new achievement under the application.

What are the rate limits for the Play Games Services Publishing API?

Google enforces standard per-project quotas, typically around 60 write requests per minute. Bulk reconciliation jobs should pace requests and retry on HTTP 429.

How do I provision a new leaderboard through Jentic?

Search Jentic for 'create a play games leaderboard', load the schema for POST /games/v1configuration/applications/{applicationId}/leaderboards, and execute it with the leaderboard name, sort order, and score format.

Is the Play Games Services Publishing API free?

Yes, the API itself is free. A Google Play developer account and a configured application are required to use it.

Can I award achievements with this API?

No. Awarding achievements to players is done via the Google Play Games Services API. This Publishing API only configures the achievement definitions.

GET STARTED

Start building with Google Play Games Services Publishing API

Explore with Jentic
View OpenAPI Document