Skip to content
Login Sign up

Google Play API

Retrieve structured data from the Google Play Store. Set engine=google_play and use type=product with a product_id to fetch a single listing, or type=search with a q query to search the store.

GET https://serp.shifter.io/v1?engine=google_play&api_key=YOUR_API_KEY
ParameterTypeRequiredDescription
api_keystringyesYour SERP API key
enginestringyesMust be google_play
typestringyessearch or product
storestringyesapps or books
product_idstringconditionalRequired when type=product. The Play Store package or book ID
qstringconditionalRequired when type=search. The search query
hlstringnoInterface language code
glstringnoCountry code
Terminal window
curl "https://serp.shifter.io/v1?engine=google_play&api_key=YOUR_API_KEY&type=product&store=apps&product_id=com.kiloo.subwaysurf"
{
"search_parameters": {
"engine": "google_play",
"type": "product",
"store": "apps",
"product_id": "com.kiloo.subwaysurf"
},
"product_info": {
"title": "Subway Surfers",
"developer": "SYBO Games",
"rating": 4.5,
"reviews": 41230000,
"downloads": "1B+",
"description": "DASH as fast as you can! ..."
},
"media": { "icon": "https://play-lh.googleusercontent.com/..." }
}