Crawlzodocs
API referenceGoogle Play

Google play app

One app's Play Store listing, with its ratings breakdown.

Address the app by app_id (the Android package name, e.g. com.whatsapp) or by its full store url, the package is read out of the ?id= parameter.

Returns title, description, summary, icon, header image, screenshots, the developer block (name, id, site, email, address), the exact rating plus the full 1-5 star histogram, rating and review counts, installs, price/currency, ads and in-app-purchase flags, content rating, genre, release and update dates, version, Android requirements, privacy policy and what's new.

A package that does not exist in the requested country's store is a clean 404, note that means "not available in country", which is not the same as "does not exist anywhere".

The example response below is real output from this endpoint, not an illustration. Long lists and long strings are shortened to keep the page readable, and each place that happens is marked. This example took 2.6s.

POST
/v1/scrapers/google-play-app-v4

Authorization

ApiKeyAuth
X-API-Key<token>

Your API key. Sent on every request.

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

application/json

curl -X POST "https://example.com/v1/scrapers/google-play-app-v4" \  -H "Content-Type: application/json" \  -d '{    "app_id": "com.whatsapp",    "lang": "en",    "country": "US"  }'
{  "request_id": "req_8f2c1d94e7b0",  "success": true,  "status": {    "code": "OK",    "message": "Scrape completed.",    "retryable": false  },  "data": {    "app_id": "com.whatsapp",    "contains_ads": false,    "content_descriptors": [      "Users Interact"    ],    "content_rating": "Everyone",    "country": "US",    "currency": "USD",    "description": "WhatsApp from Meta is a FREE messaging and video calling app. It’s used by over 2B people in more than 180 countries. It’s simple, reliable, and private, so you can easily keep in touch with your friends and family. WhatsApp works across mobile and desktop even on slow connections, with no subscription fees*.\n\nPrivate … (+1891 chars)",    "developer": {      "address": "1 Meta Way\nMenlo Park, CA 94025-1444\nUnited States",      "email": "android@support.whatsapp.com",      "id": "5191370068110375942",      "legal_name": "Meta Platforms, Inc.",      "name": "WhatsApp LLC",      "url": "https://play.google.com/store/apps/developer?id=WhatsApp+LLC",      "website": "http://www.whatsapp.com/"    },    "free": true,    "genre": "Communication",    "genre_id": "COMMUNICATION",    "header_image": "https://play-lh.googleusercontent.com/eLX_xvno2Kq_zvpkkP8yPBRfo2TEQSrv7m7WrQ6xloPsDRJ85XQ28kGYuoR-_EBWh2Uoq2GMlDvlBEIxHRyhuSg",    "histogram": {      "1": 10712507,      "2": 3320073,      "3": 8759453,      "4": 21763679,      "5": 197251441    },    "icon": "https://play-lh.googleusercontent.com/Gqxk4T0uZsDwFp07DE-508hkyvcNmgFuRwPiwTEfF7D7OzGv1FdHDzEyMxNsSBZLOJlGpe3ULvVM2RgrRAlBqA",    "in_app_purchase_range": "$0.40 - $199.99 per item",    "in_app_purchases": true,    "installs": "10,000,000,000+",    "lang": "en",    "min_installs": 10000000000,    "price": 0,    "privacy_policy": "https://www.whatsapp.com/legal/privacy-policy",    "rating": 4.619147,    "rating_count": 241807231,    "rating_display": "4.6",    "real_installs": 12244122227,    "released": "Oct 18, 2010",    "released_at": "2010-10-18T20:58:53+00:00",    "review_count": 1953458,    "screenshots": [      "https://play-lh.googleusercontent.com/GQF4h3VL-kklOrVS_f1QRAJJZa2zQyVNcFbKdOIkvI_Pcu1op0Sy3uiryiTxpdcCDs7vEDA9eq0eWbxo0fx_wc8",      "https://play-lh.googleusercontent.com/Q042rTbs53V_jW_c5fMqnNLCf-FBKiO2KiFKJJACa65oMCkaxqDSFKPQ7TH8nYetS-js-fMV7ptXSsF-aCkvcw",      "… 7 more items in the full response"    ],    "summary": "Simple. Reliable. Private.",    "target_sdk": 35,    "title": "WhatsApp Messenger",    "updated": "Aug 21, 2026",    "updated_at": "2026-08-22T02:18:58+00:00",    "url": "https://play.google.com/store/apps/details?id=com.whatsapp&hl=en&gl=US",    "whats_new": "• You can now start voice chats in all groups to connect live over audio without ringing. Swipe up and hold in a group to get started.\n\n• You can now turn off your video before accepting incoming video calls.\n\nThanks for using WhatsApp!"  },  "error": null,  "meta": {    "client_id": "client_abc123",    "scraper": "google-play-app-v4",    "billable": true,    "duration_ms": 2052  }}