App Stores Scraper avatar

App Stores Scraper

Try for free

3 days trial then $25.00/month - No credit card required now

Go to Store
App Stores Scraper

App Stores Scraper

scraped_org/app-stores-scraper
Try for free

3 days trial then $25.00/month - No credit card required now

Effortlessly gather app data from both the Google Play Store and Apple App Store. Our Actor is designed for speed, reliability, and scalability, handling multiple apps in a single run with ease. Perfect for businesses, developers, and analysts looking to gain insights and make data-driven decisions.

You can access the App Stores Scraper programmatically from your own applications by using the Apify API. You can choose the language preference from below. To use the Apify API, you’ll need an Apify account and your API token, found in Integrations settings in Apify Console.

1{
2  "openapi": "3.0.1",
3  "info": {
4    "version": "0.0",
5    "x-build-id": "9YRsmuUJmFl8YNMgs"
6  },
7  "servers": [
8    {
9      "url": "https://api.apify.com/v2"
10    }
11  ],
12  "paths": {
13    "/acts/scraped_org~app-stores-scraper/run-sync-get-dataset-items": {
14      "post": {
15        "operationId": "run-sync-get-dataset-items-scraped_org-app-stores-scraper",
16        "x-openai-isConsequential": false,
17        "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
18        "tags": [
19          "Run Actor"
20        ],
21        "requestBody": {
22          "required": true,
23          "content": {
24            "application/json": {
25              "schema": {
26                "$ref": "#/components/schemas/inputSchema"
27              }
28            }
29          }
30        },
31        "parameters": [
32          {
33            "name": "token",
34            "in": "query",
35            "required": true,
36            "schema": {
37              "type": "string"
38            },
39            "description": "Enter your Apify token here"
40          }
41        ],
42        "responses": {
43          "200": {
44            "description": "OK"
45          }
46        }
47      }
48    },
49    "/acts/scraped_org~app-stores-scraper/runs": {
50      "post": {
51        "operationId": "runs-sync-scraped_org-app-stores-scraper",
52        "x-openai-isConsequential": false,
53        "summary": "Executes an Actor and returns information about the initiated run in response.",
54        "tags": [
55          "Run Actor"
56        ],
57        "requestBody": {
58          "required": true,
59          "content": {
60            "application/json": {
61              "schema": {
62                "$ref": "#/components/schemas/inputSchema"
63              }
64            }
65          }
66        },
67        "parameters": [
68          {
69            "name": "token",
70            "in": "query",
71            "required": true,
72            "schema": {
73              "type": "string"
74            },
75            "description": "Enter your Apify token here"
76          }
77        ],
78        "responses": {
79          "200": {
80            "description": "OK",
81            "content": {
82              "application/json": {
83                "schema": {
84                  "$ref": "#/components/schemas/runsResponseSchema"
85                }
86              }
87            }
88          }
89        }
90      }
91    },
92    "/acts/scraped_org~app-stores-scraper/run-sync": {
93      "post": {
94        "operationId": "run-sync-scraped_org-app-stores-scraper",
95        "x-openai-isConsequential": false,
96        "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
97        "tags": [
98          "Run Actor"
99        ],
100        "requestBody": {
101          "required": true,
102          "content": {
103            "application/json": {
104              "schema": {
105                "$ref": "#/components/schemas/inputSchema"
106              }
107            }
108          }
109        },
110        "parameters": [
111          {
112            "name": "token",
113            "in": "query",
114            "required": true,
115            "schema": {
116              "type": "string"
117            },
118            "description": "Enter your Apify token here"
119          }
120        ],
121        "responses": {
122          "200": {
123            "description": "OK"
124          }
125        }
126      }
127    }
128  },
129  "components": {
130    "schemas": {
131      "inputSchema": {
132        "type": "object",
133        "required": [
134          "action"
135        ],
136        "properties": {
137          "action": {
138            "title": "Action",
139            "enum": [
140              "apple_store_app_details",
141              "apple_store_app_reviews",
142              "apple_store_top_apps",
143              "apple_store_search_apps",
144              "google_play_app_details",
145              "google_play_app_reviews",
146              "google_play_top_apps",
147              "google_play_search_apps"
148            ],
149            "type": "string",
150            "description": "Select an action to perform",
151            "default": "apple_store_app_details"
152          },
153          "country": {
154            "title": "Country",
155            "minLength": 2,
156            "maxLength": 2,
157            "type": "string",
158            "description": "2 letters country code (ISO 3166-2)",
159            "default": "us"
160          },
161          "language": {
162            "title": "Language",
163            "minLength": 2,
164            "maxLength": 2,
165            "type": "string",
166            "description": "2 letters language code (ISO 639-1)",
167            "default": "en"
168          },
169          "apple_app_ids": {
170            "title": "Apple App IDs",
171            "type": "array",
172            "description": "Apple App IDs",
173            "default": [
174              "284882215"
175            ],
176            "items": {
177              "type": "string"
178            }
179          },
180          "apple_store_max_reviews": {
181            "title": "Apple Store Maximum Reviews",
182            "minimum": 1,
183            "type": "integer",
184            "description": "How many reviews to extract",
185            "default": 20
186          },
187          "apple_store_top_apps_device_types": {
188            "title": "Apple Device Types",
189            "type": "array",
190            "description": "Apple Device Types",
191            "items": {
192              "type": "string",
193              "enum": [
194                "iphone",
195                "ipad"
196              ],
197              "enumTitles": [
198                "iPhone",
199                "iPad"
200              ]
201            },
202            "default": [
203              "iphone"
204            ]
205          },
206          "apple_store_top_apps_modes": {
207            "title": "Apple Store Modes",
208            "type": "array",
209            "description": "Apple Store Modes",
210            "items": {
211              "type": "string",
212              "enum": [
213                "top-free",
214                "top-paid"
215              ],
216              "enumTitles": [
217                "Top Free",
218                "top-paid"
219              ]
220            },
221            "default": [
222              "top-free"
223            ]
224          },
225          "apple_store_top_apps_genres": {
226            "title": "Apple Store Genres",
227            "type": "array",
228            "description": "Apple Store Genres",
229            "items": {
230              "type": "string",
231              "enum": [
232                "36",
233                "6000",
234                "6001",
235                "6002",
236                "6003",
237                "6004",
238                "6005",
239                "6006",
240                "6007",
241                "6008",
242                "6009",
243                "6010",
244                "6011",
245                "6012",
246                "6013",
247                "6015",
248                "6016",
249                "6017",
250                "6018",
251                "6020",
252                "6021",
253                "6023",
254                "6024",
255                "6026",
256                "6027",
257                "7001",
258                "7002",
259                "7003",
260                "7004",
261                "7005",
262                "7006",
263                "7009",
264                "7011",
265                "7012",
266                "7013",
267                "7014",
268                "7015",
269                "7016",
270                "7017",
271                "7018",
272                "7019"
273              ],
274              "enumTitles": [
275                "Kids Apps",
276                "Business Apps",
277                "Weather Apps",
278                "Utilities Apps",
279                "Travel Apps",
280                "Sports Apps",
281                "Social Networking Apps",
282                "Reference Apps",
283                "Productivity Apps",
284                "Photo video Apps",
285                "News Apps",
286                "Navigation Apps",
287                "Music Apps",
288                "Lifestyle Apps",
289                "Health Fitness Apps",
290                "Finance Apps",
291                "Entertainment Apps",
292                "Education Apps",
293                "Books Apps",
294                "Medical Apps",
295                "Magazines Newspapers Apps",
296                "Food Drink Apps",
297                "Shopping Apps",
298                "Developer tools Apps",
299                "Graphics design Apps",
300                "Action Games",
301                "Adventure Games",
302                "Casual Games",
303                "Board Games",
304                "Card Games",
305                "Casino Games",
306                "Family Games",
307                "Music Games",
308                "Puzzle Games",
309                "Racing Games",
310                "Role Playing Games",
311                "Simulation Games",
312                "Sports Games",
313                "Strategy Games",
314                "Trivia Games",
315                "Word Games"
316              ]
317            },
318            "default": [
319              "6005"
320            ]
321          },
322          "apple_store_max_top_apps": {
323            "title": "Apple Store Maximum Top Apps",
324            "minimum": 1,
325            "maximum": 100,
326            "type": "integer",
327            "description": "How many Top Apps to extract",
328            "default": 100
329          },
330          "apple_store_search_apps": {
331            "title": "Apple Store Search Apps",
332            "type": "string",
333            "description": "Search apps in Apple Store"
334          },
335          "google_bundle_ids": {
336            "title": "Google Bundle IDs",
337            "type": "array",
338            "description": "Google Bundle IDs",
339            "items": {
340              "type": "string"
341            }
342          },
343          "google_play_reviews_sort_by": {
344            "title": "Google Play Review Sort By",
345            "enum": [
346              "newest",
347              "most_relevant",
348              "rating"
349            ],
350            "type": "string",
351            "description": "Google Play Review Sort By",
352            "default": "newest"
353          },
354          "google_play_reviews_device_type": {
355            "title": "Google Play Review Device Type",
356            "enum": [
357              "all",
358              "phone",
359              "tablet",
360              "chromebook",
361              "tv"
362            ],
363            "type": "string",
364            "description": "Google Play Review Device Type",
365            "default": "all"
366          },
367          "google_play_reviews_rating": {
368            "title": "Google Play Review Rating",
369            "enum": [
370              "all",
371              "1",
372              "2",
373              "3",
374              "4",
375              "5"
376            ],
377            "type": "string",
378            "description": "Google Play Review Rating",
379            "default": "all"
380          },
381          "google_play_max_reviews": {
382            "title": "Google Play Maximum Reviews",
383            "minimum": 1,
384            "type": "integer",
385            "description": "How many reviews to extract",
386            "default": 100
387          },
388          "google_play_top_apps_modes": {
389            "title": "Google Play Modes",
390            "type": "array",
391            "description": "Google Play Modes",
392            "items": {
393              "type": "string",
394              "enum": [
395                "topselling_free",
396                "topselling_paid",
397                "topgrossing",
398                "movers_shakers",
399                "topselling_new_free",
400                "topselling_new_paid"
401              ],
402              "enumTitles": [
403                "Top Selling Free",
404                "Top Selling Paid",
405                "Top Grossing",
406                "Movers Shakers",
407                "Top Selling New Free",
408                "Top Selling New Paid"
409              ]
410            },
411            "default": [
412              "topselling_free"
413            ]
414          },
415          "google_play_top_apps_categories": {
416            "title": "Google Play Categories",
417            "type": "array",
418            "description": "Google Play Categories",
419            "items": {
420              "type": "string",
421              "enum": [
422                "OVERALL",
423                "APPLICATION",
424                "GAME",
425                "ART_AND_DESIGN",
426                "AUTO_AND_VEHICLES",
427                "BEAUTY",
428                "BOOKS_AND_REFERENCE",
429                "BUSINESS",
430                "COMICS",
431                "COMMUNICATION",
432                "DATING",
433                "EDUCATION",
434                "ENTERTAINMENT",
435                "EVENTS",
436                "FINANCE",
437                "FOOD_AND_DRINK",
438                "HEALTH_AND_FITNESS",
439                "HOUSE_AND_HOME",
440                "LIFESTYLE",
441                "MAPS_AND_NAVIGATION",
442                "MEDICAL",
443                "MUSIC_AND_AUDIO",
444                "NEWS_AND_MAGAZINES",
445                "PARENTING",
446                "PERSONALIZATION",
447                "PHOTOGRAPHY",
448                "PRODUCTIVITY",
449                "SHOPPING",
450                "SOCIAL",
451                "SPORTS",
452                "TOOLS",
453                "TRAVEL_AND_LOCAL",
454                "VIDEO_PLAYERS",
455                "WEATHER",
456                "LIBRARIES_AND_DEMO",
457                "GAME_ARCADE",
458                "GAME_PUZZLE",
459                "GAME_CARD",
460                "GAME_CASUAL",
461                "GAME_RACING",
462                "GAME_SPORTS",
463                "GAME_ACTION",
464                "GAME_ADVENTURE",
465                "GAME_BOARD",
466                "GAME_CASINO",
467                "GAME_EDUCATIONAL",
468                "GAME_MUSIC",
469                "GAME_ROLE_PLAYING",
470                "GAME_SIMULATION",
471                "GAME_STRATEGY",
472                "GAME_TRIVIA",
473                "GAME_WORD",
474                "ANDROID_WEAR",
475                "FAMILY",
476                "FAMILY_ACTION",
477                "FAMILY_BRAINGAMES",
478                "FAMILY_CREATE",
479                "FAMILY_EDUCATION",
480                "FAMILY_MUSICVIDEO",
481                "FAMILY_PRETEND"
482              ]
483            },
484            "default": [
485              "SOCIAL"
486            ]
487          },
488          "google_play_max_top_apps": {
489            "title": "Google Play Maximum Top Apps",
490            "minimum": 1,
491            "maximum": 200,
492            "type": "integer",
493            "description": "How many Top Apps to extract",
494            "default": 200
495          },
496          "google_play_search_apps": {
497            "title": "Google Play Search Apps",
498            "type": "string",
499            "description": "Search apps in Google Play"
500          },
501          "proxy": {
502            "title": "Proxy configuration",
503            "type": "object",
504            "description": "Select proxies to be used by your crawler."
505          }
506        }
507      },
508      "runsResponseSchema": {
509        "type": "object",
510        "properties": {
511          "data": {
512            "type": "object",
513            "properties": {
514              "id": {
515                "type": "string"
516              },
517              "actId": {
518                "type": "string"
519              },
520              "userId": {
521                "type": "string"
522              },
523              "startedAt": {
524                "type": "string",
525                "format": "date-time",
526                "example": "2025-01-08T00:00:00.000Z"
527              },
528              "finishedAt": {
529                "type": "string",
530                "format": "date-time",
531                "example": "2025-01-08T00:00:00.000Z"
532              },
533              "status": {
534                "type": "string",
535                "example": "READY"
536              },
537              "meta": {
538                "type": "object",
539                "properties": {
540                  "origin": {
541                    "type": "string",
542                    "example": "API"
543                  },
544                  "userAgent": {
545                    "type": "string"
546                  }
547                }
548              },
549              "stats": {
550                "type": "object",
551                "properties": {
552                  "inputBodyLen": {
553                    "type": "integer",
554                    "example": 2000
555                  },
556                  "rebootCount": {
557                    "type": "integer",
558                    "example": 0
559                  },
560                  "restartCount": {
561                    "type": "integer",
562                    "example": 0
563                  },
564                  "resurrectCount": {
565                    "type": "integer",
566                    "example": 0
567                  },
568                  "computeUnits": {
569                    "type": "integer",
570                    "example": 0
571                  }
572                }
573              },
574              "options": {
575                "type": "object",
576                "properties": {
577                  "build": {
578                    "type": "string",
579                    "example": "latest"
580                  },
581                  "timeoutSecs": {
582                    "type": "integer",
583                    "example": 300
584                  },
585                  "memoryMbytes": {
586                    "type": "integer",
587                    "example": 1024
588                  },
589                  "diskMbytes": {
590                    "type": "integer",
591                    "example": 2048
592                  }
593                }
594              },
595              "buildId": {
596                "type": "string"
597              },
598              "defaultKeyValueStoreId": {
599                "type": "string"
600              },
601              "defaultDatasetId": {
602                "type": "string"
603              },
604              "defaultRequestQueueId": {
605                "type": "string"
606              },
607              "buildNumber": {
608                "type": "string",
609                "example": "1.0.0"
610              },
611              "containerUrl": {
612                "type": "string"
613              },
614              "usage": {
615                "type": "object",
616                "properties": {
617                  "ACTOR_COMPUTE_UNITS": {
618                    "type": "integer",
619                    "example": 0
620                  },
621                  "DATASET_READS": {
622                    "type": "integer",
623                    "example": 0
624                  },
625                  "DATASET_WRITES": {
626                    "type": "integer",
627                    "example": 0
628                  },
629                  "KEY_VALUE_STORE_READS": {
630                    "type": "integer",
631                    "example": 0
632                  },
633                  "KEY_VALUE_STORE_WRITES": {
634                    "type": "integer",
635                    "example": 1
636                  },
637                  "KEY_VALUE_STORE_LISTS": {
638                    "type": "integer",
639                    "example": 0
640                  },
641                  "REQUEST_QUEUE_READS": {
642                    "type": "integer",
643                    "example": 0
644                  },
645                  "REQUEST_QUEUE_WRITES": {
646                    "type": "integer",
647                    "example": 0
648                  },
649                  "DATA_TRANSFER_INTERNAL_GBYTES": {
650                    "type": "integer",
651                    "example": 0
652                  },
653                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
654                    "type": "integer",
655                    "example": 0
656                  },
657                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
658                    "type": "integer",
659                    "example": 0
660                  },
661                  "PROXY_SERPS": {
662                    "type": "integer",
663                    "example": 0
664                  }
665                }
666              },
667              "usageTotalUsd": {
668                "type": "number",
669                "example": 0.00005
670              },
671              "usageUsd": {
672                "type": "object",
673                "properties": {
674                  "ACTOR_COMPUTE_UNITS": {
675                    "type": "integer",
676                    "example": 0
677                  },
678                  "DATASET_READS": {
679                    "type": "integer",
680                    "example": 0
681                  },
682                  "DATASET_WRITES": {
683                    "type": "integer",
684                    "example": 0
685                  },
686                  "KEY_VALUE_STORE_READS": {
687                    "type": "integer",
688                    "example": 0
689                  },
690                  "KEY_VALUE_STORE_WRITES": {
691                    "type": "number",
692                    "example": 0.00005
693                  },
694                  "KEY_VALUE_STORE_LISTS": {
695                    "type": "integer",
696                    "example": 0
697                  },
698                  "REQUEST_QUEUE_READS": {
699                    "type": "integer",
700                    "example": 0
701                  },
702                  "REQUEST_QUEUE_WRITES": {
703                    "type": "integer",
704                    "example": 0
705                  },
706                  "DATA_TRANSFER_INTERNAL_GBYTES": {
707                    "type": "integer",
708                    "example": 0
709                  },
710                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
711                    "type": "integer",
712                    "example": 0
713                  },
714                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
715                    "type": "integer",
716                    "example": 0
717                  },
718                  "PROXY_SERPS": {
719                    "type": "integer",
720                    "example": 0
721                  }
722                }
723              }
724            }
725          }
726        }
727      }
728    }
729  }
730}

App Stores Scraper OpenAPI definition

OpenAPI is a standard for designing and describing RESTful APIs, allowing developers to define API structure, endpoints, and data formats in a machine-readable way. It simplifies API development, integration, and documentation.

OpenAPI is effective when used with AI agents and GPTs by standardizing how these systems interact with various APIs, for reliable integrations and efficient communication.

By defining machine-readable API specifications, OpenAPI allows AI models like GPTs to understand and use varied data sources, improving accuracy. This accelerates development, reduces errors, and provides context-aware responses, making OpenAPI a core component for AI applications.

You can download the OpenAPI definitions for App Stores Scraper from the options below:

If you’d like to learn more about how OpenAPI powers GPTs, read our blog post.

You can also check out our other API clients:

Developer
Maintained by Community

Actor Metrics

  • 8 monthly users

  • 2 bookmarks

  • >99% runs succeeded

  • Created in Sep 2024

  • Modified 5 months ago