Provider docs
Android app intelligence: full app records, store search, related-app discovery, and permission listings for any public listing.
# 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}}'
| Operation | Params | Returns |
|---|---|---|
| app_details | id, country?, language? | Full record: title, description, icon, ratings, developer, pricing. |
| search | term, country?, language?, limit? | Ranked store search; limit clamped server-side. |
| similar_apps | id, country?, language? | Related-apps listing for one app. |
| permissions | id, country?, language? | Permission set requested by one app. |
Numeric track IDs are carried as strings (googleplay:app:…) to avoid
precision loss in JS-based agent runtimes.