Crawlzodocs
API referenceGoogle Play

Google play developer

The apps published by one developer.

developer must be the name exactly as the store spells it, it is the developer.name field returned by the app endpoint (e.g. Google LLC). Returns the same app objects as search.

First page only (what the store itself renders, up to ~20 apps): Play's "load more" answers with a differently shaped compact item, and returning two schemas from one endpoint would be worse than returning one page cleanly.

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 3.4s.

POST
/v1/scrapers/google-play-developer-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-developer-v4" \  -H "Content-Type: application/json" \  -d '{    "developer": "WhatsApp LLC",    "lang": "en",    "country": "US"  }'
{  "request_id": "req_8f2c1d94e7b0",  "success": true,  "status": {    "code": "OK",    "message": "Scrape completed.",    "retryable": false  },  "data": {    "apps": [      {        "app_id": "com.whatsapp",        "content_rating": "Everyone",        "currency": "USD",        "developer": "WhatsApp LLC",        "free": true,        "genre": "Communication",        "header_image": "https://play-lh.googleusercontent.com/eLX_xvno2Kq_zvpkkP8yPBRfo2TEQSrv7m7WrQ6xloPsDRJ85XQ28kGYuoR-_EBWh2Uoq2GMlDvlBEIxHRyhuSg",        "icon": "https://play-lh.googleusercontent.com/Gqxk4T0uZsDwFp07DE-508hkyvcNmgFuRwPiwTEfF7D7OzGv1FdHDzEyMxNsSBZLOJlGpe3ULvVM2RgrRAlBqA",        "in_app_purchase_range": "$0.40 - $199.99 per item",        "installs": "10,000,000,000+",        "price": 0,        "rating": 4.6191607,        "rating_display": "4.6",        "screenshots": [          "https://play-lh.googleusercontent.com/GQF4h3VL-kklOrVS_f1QRAJJZa2zQyVNcFbKdOIkvI_Pcu1op0Sy3uiryiTxpdcCDs7vEDA9eq0eWbxo0fx_wc8",          "https://play-lh.googleusercontent.com/Q042rTbs53V_jW_c5fMqnNLCf-FBKiO2KiFKJJACa65oMCkaxqDSFKPQ7TH8nYetS-js-fMV7ptXSsF-aCkvcw",          "… 8 more items in the full response"        ],        "summary": "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)",        "title": "WhatsApp Messenger",        "url": "https://play.google.com/store/apps/details?id=com.whatsapp&hl=en&gl=US"      },      {        "app_id": "com.whatsapp.w4b",        "content_rating": "Everyone",        "currency": "USD",        "developer": "WhatsApp LLC",        "free": true,        "genre": "Communication",        "header_image": "https://play-lh.googleusercontent.com/B5jyb5AaTY1-85LqV872Mj6EXEI_O4kNO5HLqmLMS_f3J0lJJVLTQUIaHI4bHqwwFTcaQrW9QwREv-e4Z8SfPg",        "icon": "https://play-lh.googleusercontent.com/4LJ6f3U5wANt09KBlZ-F-YKooCQXTwHsa3vtTBFmsXWmNy-AdBEoHnWmyT0mGxh-1pQetlSoc9mIkRDJotQYbg",        "in_app_purchase_range": "$0.29 - $2,799.99 per item",        "installs": "1,000,000,000+",        "price": 0,        "rating": 4.6020064,        "rating_display": "4.6",        "screenshots": [          "https://play-lh.googleusercontent.com/tVyAIONnVdm_3ECqcT9JjJe-3j-tJlpbJfSK_bI_ytbVae00QpHRO6wSHFovKa8DAJobo3YGOor0t9ND3gUb_w",          "https://play-lh.googleusercontent.com/tw99Mx3NIQZ8OquPwfIKJ-K2r7Ffql4KftA8UWsWS20iNxqPGeJ-5jkkqvNLR72wxFPXZli88-IMUw3rbj8RCD8",          "… 7 more items in the full response"        ],        "summary": "Everything you love about WhatsApp plus built-in tools for business WhatsApp Business is a free-to-download app with built-in tools to help you work smarter, build trust, and grow your business.\n\nYou get free calls* and free international messaging* plus business features to help you do more with conversations.\n\nDownlo… (+1736 chars)",        "title": "WhatsApp Business",        "url": "https://play.google.com/store/apps/details?id=com.whatsapp.w4b&hl=en&gl=US"      }    ],    "country": "US",    "developer": "WhatsApp LLC",    "lang": "en",    "returned": 2  },  "error": null,  "meta": {    "client_id": "client_abc123",    "scraper": "google-play-developer-v4",    "billable": true,    "duration_ms": 2847  }}