
Apple App Store Plus
Pricing
$12.00/month + usage

Apple App Store Plus
No limits. Get details and reviews for a specific app, search by keyword or developer, retrieve top rankings, assess permissions and more!
0.0 (0)
Pricing
$12.00/month + usage
1
Monthly users
3
Runs succeeded
>99%
Last modified
4 months ago
You can access the Apple App Store Plus programmatically from your own applications by using the Apify API. You can also 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": "3.0",
5 "x-build-id": "TlQX0h9dOQhVAJKNi"
6 },
7 "servers": [
8 {
9 "url": "https://api.apify.com/v2"
10 }
11 ],
12 "paths": {
13 "/acts/canadesk~apple-app-store-plus/run-sync-get-dataset-items": {
14 "post": {
15 "operationId": "run-sync-get-dataset-items-canadesk-apple-app-store-plus",
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/canadesk~apple-app-store-plus/runs": {
50 "post": {
51 "operationId": "runs-sync-canadesk-apple-app-store-plus",
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/canadesk~apple-app-store-plus/run-sync": {
93 "post": {
94 "operationId": "run-sync-canadesk-apple-app-store-plus",
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 "process"
135 ],
136 "properties": {
137 "process": {
138 "title": "Process",
139 "enum": [
140 "ap",
141 "se",
142 "de",
143 "re",
144 "rec",
145 "li",
146 "pe"
147 ],
148 "type": "string",
149 "description": "Select the process to run.",
150 "default": "ap"
151 },
152 "appId": {
153 "title": "Application ID",
154 "type": "array",
155 "description": "Your Application ID from (e.g., https://apps.apple.com/us/app/translate/id{HERE}).",
156 "default": [
157 "1514844618"
158 ],
159 "items": {
160 "type": "string"
161 }
162 },
163 "developerId": {
164 "title": "Developer ID",
165 "type": "array",
166 "description": "Your Developer ID from (e.g., https://apps.apple.com/ca/developer/apple/id{HERE}).",
167 "default": [
168 "284417353"
169 ],
170 "items": {
171 "type": "string"
172 }
173 },
174 "keyword": {
175 "title": "Keyword",
176 "type": "array",
177 "description": "Type a keyword (only applies to Search by Keyword).",
178 "items": {
179 "type": "string"
180 }
181 },
182 "lang": {
183 "title": "Default language",
184 "type": "string",
185 "description": "Does not apply to Reviews. Default language to look for (ISO 639-1)."
186 },
187 "country": {
188 "title": "Default country",
189 "type": "string",
190 "description": "Default country to look for (ISO 3166)."
191 },
192 "sorting": {
193 "title": "Sort By",
194 "enum": [
195 "sort.RECENT",
196 "sort.HELPFUL"
197 ],
198 "type": "string",
199 "description": "Select how to sort data (only applies to List Collection).",
200 "default": "sort.RECENT"
201 },
202 "collection": {
203 "title": "Collection",
204 "enum": [
205 "TOP_FREE_IOS",
206 "TOP_PAID_IOS",
207 "TOP_GROSSING_IOS",
208 "TOP_FREE_IPAD",
209 "TOP_PAID_IPAD",
210 "TOP_GROSSING_IPAD",
211 "TOP_FREE_MAC",
212 "TOP_PAID_MAC",
213 "TOP_GROSSING_MAC"
214 ],
215 "type": "string",
216 "description": "Select a collection type (only applicable to List Collection)",
217 "default": "TOP_FREE_IOS"
218 },
219 "metadata": {
220 "title": "Metadata",
221 "enum": [
222 "no",
223 "yes"
224 ],
225 "type": "string",
226 "description": "Retrieves extra details (only applies to Search by AppId).",
227 "default": "no"
228 },
229 "maximum": {
230 "title": "Maximum app results",
231 "minimum": 1,
232 "maximum": 200,
233 "type": "integer",
234 "description": "Maximum number of records returned per AppId (impact on performance).",
235 "default": 25
236 },
237 "maxReviews": {
238 "title": "Maximum reviews",
239 "minimum": 50,
240 "maximum": 9999,
241 "type": "integer",
242 "description": "Maximum number of reviews returned (impact on performance).",
243 "default": 200
244 },
245 "delay": {
246 "title": "Delay",
247 "minimum": 2,
248 "maximum": 30,
249 "type": "integer",
250 "description": "Waiting time between requests.",
251 "default": 2
252 },
253 "proxy": {
254 "title": "Proxy configuration",
255 "type": "object",
256 "description": "Select proxies to be used by your crawler."
257 }
258 }
259 },
260 "runsResponseSchema": {
261 "type": "object",
262 "properties": {
263 "data": {
264 "type": "object",
265 "properties": {
266 "id": {
267 "type": "string"
268 },
269 "actId": {
270 "type": "string"
271 },
272 "userId": {
273 "type": "string"
274 },
275 "startedAt": {
276 "type": "string",
277 "format": "date-time",
278 "example": "2025-01-08T00:00:00.000Z"
279 },
280 "finishedAt": {
281 "type": "string",
282 "format": "date-time",
283 "example": "2025-01-08T00:00:00.000Z"
284 },
285 "status": {
286 "type": "string",
287 "example": "READY"
288 },
289 "meta": {
290 "type": "object",
291 "properties": {
292 "origin": {
293 "type": "string",
294 "example": "API"
295 },
296 "userAgent": {
297 "type": "string"
298 }
299 }
300 },
301 "stats": {
302 "type": "object",
303 "properties": {
304 "inputBodyLen": {
305 "type": "integer",
306 "example": 2000
307 },
308 "rebootCount": {
309 "type": "integer",
310 "example": 0
311 },
312 "restartCount": {
313 "type": "integer",
314 "example": 0
315 },
316 "resurrectCount": {
317 "type": "integer",
318 "example": 0
319 },
320 "computeUnits": {
321 "type": "integer",
322 "example": 0
323 }
324 }
325 },
326 "options": {
327 "type": "object",
328 "properties": {
329 "build": {
330 "type": "string",
331 "example": "latest"
332 },
333 "timeoutSecs": {
334 "type": "integer",
335 "example": 300
336 },
337 "memoryMbytes": {
338 "type": "integer",
339 "example": 1024
340 },
341 "diskMbytes": {
342 "type": "integer",
343 "example": 2048
344 }
345 }
346 },
347 "buildId": {
348 "type": "string"
349 },
350 "defaultKeyValueStoreId": {
351 "type": "string"
352 },
353 "defaultDatasetId": {
354 "type": "string"
355 },
356 "defaultRequestQueueId": {
357 "type": "string"
358 },
359 "buildNumber": {
360 "type": "string",
361 "example": "1.0.0"
362 },
363 "containerUrl": {
364 "type": "string"
365 },
366 "usage": {
367 "type": "object",
368 "properties": {
369 "ACTOR_COMPUTE_UNITS": {
370 "type": "integer",
371 "example": 0
372 },
373 "DATASET_READS": {
374 "type": "integer",
375 "example": 0
376 },
377 "DATASET_WRITES": {
378 "type": "integer",
379 "example": 0
380 },
381 "KEY_VALUE_STORE_READS": {
382 "type": "integer",
383 "example": 0
384 },
385 "KEY_VALUE_STORE_WRITES": {
386 "type": "integer",
387 "example": 1
388 },
389 "KEY_VALUE_STORE_LISTS": {
390 "type": "integer",
391 "example": 0
392 },
393 "REQUEST_QUEUE_READS": {
394 "type": "integer",
395 "example": 0
396 },
397 "REQUEST_QUEUE_WRITES": {
398 "type": "integer",
399 "example": 0
400 },
401 "DATA_TRANSFER_INTERNAL_GBYTES": {
402 "type": "integer",
403 "example": 0
404 },
405 "DATA_TRANSFER_EXTERNAL_GBYTES": {
406 "type": "integer",
407 "example": 0
408 },
409 "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
410 "type": "integer",
411 "example": 0
412 },
413 "PROXY_SERPS": {
414 "type": "integer",
415 "example": 0
416 }
417 }
418 },
419 "usageTotalUsd": {
420 "type": "number",
421 "example": 0.00005
422 },
423 "usageUsd": {
424 "type": "object",
425 "properties": {
426 "ACTOR_COMPUTE_UNITS": {
427 "type": "integer",
428 "example": 0
429 },
430 "DATASET_READS": {
431 "type": "integer",
432 "example": 0
433 },
434 "DATASET_WRITES": {
435 "type": "integer",
436 "example": 0
437 },
438 "KEY_VALUE_STORE_READS": {
439 "type": "integer",
440 "example": 0
441 },
442 "KEY_VALUE_STORE_WRITES": {
443 "type": "number",
444 "example": 0.00005
445 },
446 "KEY_VALUE_STORE_LISTS": {
447 "type": "integer",
448 "example": 0
449 },
450 "REQUEST_QUEUE_READS": {
451 "type": "integer",
452 "example": 0
453 },
454 "REQUEST_QUEUE_WRITES": {
455 "type": "integer",
456 "example": 0
457 },
458 "DATA_TRANSFER_INTERNAL_GBYTES": {
459 "type": "integer",
460 "example": 0
461 },
462 "DATA_TRANSFER_EXTERNAL_GBYTES": {
463 "type": "integer",
464 "example": 0
465 },
466 "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
467 "type": "integer",
468 "example": 0
469 },
470 "PROXY_SERPS": {
471 "type": "integer",
472 "example": 0
473 }
474 }
475 }
476 }
477 }
478 }
479 }
480 }
481 }
482}
Apple App Store Plus 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 App Store Plus 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:
Pricing
Pricing model
RentalTo use this Actor, you have to pay a monthly rental fee to the developer. The rent is subtracted from your prepaid usage every month after the free trial period. You also pay for the Apify platform usage.
Free trial
Price
$12.00