Skip to main content
Publishing endpoints expose the owned-app surfaces customers normally manage in Play Console. Read endpoints are useful for dashboards and release audits. Write endpoints should be used carefully and can be validated before committing.
Release and listing updates write to Google Play. Grant write permissions only to customers who explicitly want automation for publishing workflows.

Release Tracks

List Tracks

curl
curl "https://api.appeeky.com/v1/connect/google-play/apps/com.example.app/tracks" \
  -H "X-API-Key: YOUR_APPEEKY_KEY"

Get a Track

curl
curl "https://api.appeeky.com/v1/connect/google-play/apps/com.example.app/tracks/production" \
  -H "X-API-Key: YOUR_APPEEKY_KEY"

List Releases on a Track

curl
curl "https://api.appeeky.com/v1/connect/google-play/apps/com.example.app/tracks/production/releases" \
  -H "X-API-Key: YOUR_APPEEKY_KEY"

Patch a Track

Use validateOnly=true to ask Google to validate the edit without committing it.
curl
curl -X PATCH "https://api.appeeky.com/v1/connect/google-play/apps/com.example.app/tracks/production?validateOnly=true" \
  -H "X-API-Key: YOUR_APPEEKY_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "releases": [
      {
        "name": "3.1.0",
        "versionCodes": ["123"],
        "status": "completed"
      }
    ]
  }'
Track patches accept Google’s Android Publisher track schema.

Store Listings

List Listing Localizations

curl
curl "https://api.appeeky.com/v1/connect/google-play/apps/com.example.app/listings" \
  -H "X-API-Key: YOUR_APPEEKY_KEY"

Get One Localization

curl
curl "https://api.appeeky.com/v1/connect/google-play/apps/com.example.app/listings/en-US" \
  -H "X-API-Key: YOUR_APPEEKY_KEY"

Patch Listing Metadata

curl
curl -X PATCH "https://api.appeeky.com/v1/connect/google-play/apps/com.example.app/listings/en-US?validateOnly=true" \
  -H "X-API-Key: YOUR_APPEEKY_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "title": "Example App",
    "shortDescription": "Create better screenshots faster.",
    "fullDescription": "Example App helps you create and localize app screenshots for Google Play.",
    "video": "https://www.youtube.com/watch?v=example"
  }'
Supported listing fields:
FieldDescription
titleApp title
shortDescriptionShort description
fullDescriptionFull store description
videoPromo video URL

Monetization Products

Subscriptions

curl
curl "https://api.appeeky.com/v1/connect/google-play/apps/com.example.app/subscriptions" \
  -H "X-API-Key: YOUR_APPEEKY_KEY"

One-Time Products

curl
curl "https://api.appeeky.com/v1/connect/google-play/apps/com.example.app/one-time-products" \
  -H "X-API-Key: YOUR_APPEEKY_KEY"
These endpoints are read-only in the current API surface.

Permission Guidance

ActionPermission guidance
Read releases/tracksRelease read access
Patch releases/tracksRelease management access
Read listingsStore listing read access
Patch listingsStore listing management access
Read subscriptions/productsMonetization product read access
For production automations, prefer a narrow service account permission set and use validateOnly=true in development flows.