Provider docs

Google Play APILive

Android app intelligence: full app records, store search, related-app discovery, and permission listings for any public listing.

Quickstart

# App details by track id
curl -X POST $BASE/v1/googleplay/fetch \
  -H "Authorization: Bearer $REPLYNODES_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"operation":"app_details","params":{"id":"1212616790"}}'

# Store search
curl -X POST $BASE/v1/googleplay/fetch \
  -H "Authorization: Bearer $REPLYNODES_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"operation":"search","params":{"term":"todo","limit":5}}'

Operations

OperationParamsReturns
app_detailsid, country?, language?Full record: title, description, icon, ratings, developer, pricing.
searchterm, country?, language?, limit?Ranked store search; limit clamped server-side.
similar_appsid, country?, language?Related-apps listing for one app.
permissionsid, country?, language?Permission set requested by one app.

Data shape

Numeric track IDs are carried as strings (googleplay:app:…) to avoid precision loss in JS-based agent runtimes.