πŸ”₯ Apple Store Api avatar

πŸ”₯ Apple Store Api

Try for free

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

Go to Store
πŸ”₯ Apple Store Api

πŸ”₯ Apple Store Api

bebity/apple-store-api
Try for free

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

πŸš€ Discover the "Apple Store API" by Bebity! Unlock the power of the Apple Store and unleash its vast potential with ease and efficiency! 🌟 Whether you are an app developer πŸ› οΈ, a data analyst πŸ“Š, or a marketer πŸš€, this versatile tool is your ultimate companion for all your Apple Store data needs.

You can access the πŸ”₯ Apple Store Api 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": "JS0gx7sGKBuKQexN2"
6  },
7  "servers": [
8    {
9      "url": "https://api.apify.com/v2"
10    }
11  ],
12  "paths": {
13    "/acts/bebity~apple-store-api/run-sync-get-dataset-items": {
14      "post": {
15        "operationId": "run-sync-get-dataset-items-bebity-apple-store-api",
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/bebity~apple-store-api/runs": {
50      "post": {
51        "operationId": "runs-sync-bebity-apple-store-api",
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/bebity~apple-store-api/run-sync": {
93      "post": {
94        "operationId": "run-sync-bebity-apple-store-api",
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              "getApps",
141              "getAppDetails",
142              "getSimilarApps",
143              "searchApps",
144              "getDevelopperApps",
145              "getAppReviews",
146              "getPrivacy",
147              "getRatings"
148            ],
149            "type": "string",
150            "description": "Select an action to perform",
151            "default": "getApps"
152          },
153          "num": {
154            "title": "πŸ”’ Number max of rows",
155            "type": "integer",
156            "description": "Number of rows to get",
157            "default": 200
158          },
159          "appIdOrUrl": {
160            "title": "πŸ”— App id or url",
161            "type": "string",
162            "description": "Provide app id or url here => 'com.google.android.apps.translate' or 'https://play.google.com/store/apps/details?id=com.google.android.apps.translate'"
163          },
164          "devIdOrUrl": {
165            "title": "πŸ”— Developer id or url",
166            "type": "string",
167            "description": "Provide developer id or url here => '5700313618786177705' or 'https://play.google.com/store/apps/dev?id=5700313618786177705'"
168          },
169          "category": {
170            "title": "πŸ“¦ Category",
171            "enum": [
172              "BOOKS",
173              "BUSINESS",
174              "CATALOGS",
175              "EDUCATION",
176              "ENTERTAINMENT",
177              "FINANCE",
178              "FOOD_AND_DRINK",
179              "GAMES",
180              "GAMES_ACTION",
181              "GAMES_ADVENTURE",
182              "GAMES_ARCADE",
183              "GAMES_BOARD",
184              "GAMES_CARD",
185              "GAMES_CASINO",
186              "GAMES_DICE",
187              "GAMES_EDUCATIONAL",
188              "GAMES_FAMILY",
189              "GAMES_MUSIC",
190              "GAMES_PUZZLE",
191              "GAMES_RACING",
192              "GAMES_ROLE_PLAYING",
193              "GAMES_SIMULATION",
194              "GAMES_SPORTS",
195              "GAMES_STRATEGY",
196              "GAMES_TRIVIA",
197              "GAMES_WORD",
198              "HEALTH_AND_FITNESS",
199              "LIFESTYLE",
200              "MAGAZINES_AND_NEWSPAPERS",
201              "MAGAZINES_ARTS",
202              "MAGAZINES_AUTOMOTIVE",
203              "MAGAZINES_WEDDINGS",
204              "MAGAZINES_BUSINESS",
205              "MAGAZINES_CHILDREN",
206              "MAGAZINES_COMPUTER",
207              "MAGAZINES_FOOD",
208              "MAGAZINES_CRAFTS",
209              "MAGAZINES_ELECTRONICS",
210              "MAGAZINES_ENTERTAINMENT",
211              "MAGAZINES_FASHION",
212              "MAGAZINES_HEALTH",
213              "MAGAZINES_HISTORY",
214              "MAGAZINES_HOME",
215              "MAGAZINES_LITERARY",
216              "MAGAZINES_MEN",
217              "MAGAZINES_MOVIES_AND_MUSIC",
218              "MAGAZINES_POLITICS",
219              "MAGAZINES_OUTDOORS",
220              "MAGAZINES_FAMILY",
221              "MAGAZINES_PETS",
222              "MAGAZINES_PROFESSIONAL",
223              "MAGAZINES_REGIONAL",
224              "MAGAZINES_SCIENCE",
225              "MAGAZINES_SPORTS",
226              "MAGAZINES_TEENS",
227              "MAGAZINES_TRAVEL",
228              "MAGAZINES_WOMEN",
229              "MEDICAL",
230              "MUSIC",
231              "NAVIGATION",
232              "NEWS",
233              "PHOTO_AND_VIDEO",
234              "PRODUCTIVITY",
235              "REFERENCE",
236              "SHOPPING",
237              "SOCIAL_NETWORKING",
238              "SPORTS",
239              "TRAVEL",
240              "UTILITIES",
241              "WEATHER"
242            ],
243            "type": "string",
244            "description": "Select app category"
245          },
246          "collection": {
247            "title": "πŸ†“ Collection",
248            "enum": [
249              "TOP_MAC",
250              "TOP_FREE_MAC",
251              "TOP_GROSSING_MAC",
252              "TOP_PAID_MAC",
253              "NEW_IOS",
254              "NEW_FREE_IOS",
255              "NEW_PAID_IOS",
256              "TOP_FREE_IOS",
257              "TOP_FREE_IPAD",
258              "TOP_GROSSING_IOS",
259              "TOP_GROSSING_IPAD",
260              "TOP_PAID_IOS",
261              "TOP_PAID_IPAD"
262            ],
263            "type": "string",
264            "description": "Select your collection"
265          },
266          "sort": {
267            "title": "⬆️ Order by",
268            "enum": [
269              "RECENT",
270              "HELPFUL"
271            ],
272            "type": "string",
273            "description": "Select ordering"
274          },
275          "lang": {
276            "title": "πŸ—£οΈ Default informations language",
277            "pattern": "^[a-z]{2}$",
278            "type": "string",
279            "description": "Provide language. Example: 'en' / 'fr' ...."
280          },
281          "country": {
282            "title": "🏴σ ₯󠁳󠁰󠁢󠁿 Default country",
283            "pattern": "^[a-z]{2}$",
284            "type": "string",
285            "description": "Provide country. Example: 'us' / 'fr' ...."
286          },
287          "fullDetail": {
288            "title": "βœ… Full details (more informations but make more requests)",
289            "type": "boolean",
290            "description": "If checked, more informations will be provided but more requests will be made",
291            "default": false
292          },
293          "search": {
294            "title": "πŸ”Ž Search",
295            "type": "string",
296            "description": "Provide search query"
297          }
298        }
299      },
300      "runsResponseSchema": {
301        "type": "object",
302        "properties": {
303          "data": {
304            "type": "object",
305            "properties": {
306              "id": {
307                "type": "string"
308              },
309              "actId": {
310                "type": "string"
311              },
312              "userId": {
313                "type": "string"
314              },
315              "startedAt": {
316                "type": "string",
317                "format": "date-time",
318                "example": "2025-01-08T00:00:00.000Z"
319              },
320              "finishedAt": {
321                "type": "string",
322                "format": "date-time",
323                "example": "2025-01-08T00:00:00.000Z"
324              },
325              "status": {
326                "type": "string",
327                "example": "READY"
328              },
329              "meta": {
330                "type": "object",
331                "properties": {
332                  "origin": {
333                    "type": "string",
334                    "example": "API"
335                  },
336                  "userAgent": {
337                    "type": "string"
338                  }
339                }
340              },
341              "stats": {
342                "type": "object",
343                "properties": {
344                  "inputBodyLen": {
345                    "type": "integer",
346                    "example": 2000
347                  },
348                  "rebootCount": {
349                    "type": "integer",
350                    "example": 0
351                  },
352                  "restartCount": {
353                    "type": "integer",
354                    "example": 0
355                  },
356                  "resurrectCount": {
357                    "type": "integer",
358                    "example": 0
359                  },
360                  "computeUnits": {
361                    "type": "integer",
362                    "example": 0
363                  }
364                }
365              },
366              "options": {
367                "type": "object",
368                "properties": {
369                  "build": {
370                    "type": "string",
371                    "example": "latest"
372                  },
373                  "timeoutSecs": {
374                    "type": "integer",
375                    "example": 300
376                  },
377                  "memoryMbytes": {
378                    "type": "integer",
379                    "example": 1024
380                  },
381                  "diskMbytes": {
382                    "type": "integer",
383                    "example": 2048
384                  }
385                }
386              },
387              "buildId": {
388                "type": "string"
389              },
390              "defaultKeyValueStoreId": {
391                "type": "string"
392              },
393              "defaultDatasetId": {
394                "type": "string"
395              },
396              "defaultRequestQueueId": {
397                "type": "string"
398              },
399              "buildNumber": {
400                "type": "string",
401                "example": "1.0.0"
402              },
403              "containerUrl": {
404                "type": "string"
405              },
406              "usage": {
407                "type": "object",
408                "properties": {
409                  "ACTOR_COMPUTE_UNITS": {
410                    "type": "integer",
411                    "example": 0
412                  },
413                  "DATASET_READS": {
414                    "type": "integer",
415                    "example": 0
416                  },
417                  "DATASET_WRITES": {
418                    "type": "integer",
419                    "example": 0
420                  },
421                  "KEY_VALUE_STORE_READS": {
422                    "type": "integer",
423                    "example": 0
424                  },
425                  "KEY_VALUE_STORE_WRITES": {
426                    "type": "integer",
427                    "example": 1
428                  },
429                  "KEY_VALUE_STORE_LISTS": {
430                    "type": "integer",
431                    "example": 0
432                  },
433                  "REQUEST_QUEUE_READS": {
434                    "type": "integer",
435                    "example": 0
436                  },
437                  "REQUEST_QUEUE_WRITES": {
438                    "type": "integer",
439                    "example": 0
440                  },
441                  "DATA_TRANSFER_INTERNAL_GBYTES": {
442                    "type": "integer",
443                    "example": 0
444                  },
445                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
446                    "type": "integer",
447                    "example": 0
448                  },
449                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
450                    "type": "integer",
451                    "example": 0
452                  },
453                  "PROXY_SERPS": {
454                    "type": "integer",
455                    "example": 0
456                  }
457                }
458              },
459              "usageTotalUsd": {
460                "type": "number",
461                "example": 0.00005
462              },
463              "usageUsd": {
464                "type": "object",
465                "properties": {
466                  "ACTOR_COMPUTE_UNITS": {
467                    "type": "integer",
468                    "example": 0
469                  },
470                  "DATASET_READS": {
471                    "type": "integer",
472                    "example": 0
473                  },
474                  "DATASET_WRITES": {
475                    "type": "integer",
476                    "example": 0
477                  },
478                  "KEY_VALUE_STORE_READS": {
479                    "type": "integer",
480                    "example": 0
481                  },
482                  "KEY_VALUE_STORE_WRITES": {
483                    "type": "number",
484                    "example": 0.00005
485                  },
486                  "KEY_VALUE_STORE_LISTS": {
487                    "type": "integer",
488                    "example": 0
489                  },
490                  "REQUEST_QUEUE_READS": {
491                    "type": "integer",
492                    "example": 0
493                  },
494                  "REQUEST_QUEUE_WRITES": {
495                    "type": "integer",
496                    "example": 0
497                  },
498                  "DATA_TRANSFER_INTERNAL_GBYTES": {
499                    "type": "integer",
500                    "example": 0
501                  },
502                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
503                    "type": "integer",
504                    "example": 0
505                  },
506                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
507                    "type": "integer",
508                    "example": 0
509                  },
510                  "PROXY_SERPS": {
511                    "type": "integer",
512                    "example": 0
513                  }
514                }
515              }
516            }
517          }
518        }
519      }
520    }
521  }
522}

πŸ”₯ Apple Store Api 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 πŸ”₯ Apple Store Api 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

  • 2 monthly users

  • 3 stars

  • >99% runs succeeded

  • Created in Jul 2023

  • Modified 2 years ago