-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.json
More file actions
5674 lines (5674 loc) · 347 KB
/
data.json
File metadata and controls
5674 lines (5674 loc) · 347 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"resultCount": 50,
"results": [
{
"artistViewUrl":
"https://itunes.apple.com/us/developer/yelp/id284910353?uo=4",
"artworkUrl60":
"http://is4.mzstatic.com/image/thumb/Purple118/v4/64/9d/aa/649daa0e-c33d-fc63-9100-40183b3990c9/source/60x60bb.jpg",
"artworkUrl100":
"http://is4.mzstatic.com/image/thumb/Purple118/v4/64/9d/aa/649daa0e-c33d-fc63-9100-40183b3990c9/source/100x100bb.jpg",
"appletvScreenshotUrls": [],
"artworkUrl512":
"http://is4.mzstatic.com/image/thumb/Purple118/v4/64/9d/aa/649daa0e-c33d-fc63-9100-40183b3990c9/source/512x512bb.jpg",
"ipadScreenshotUrls": [
"http://is2.mzstatic.com/image/thumb/Purple128/v4/5c/f7/55/5cf7551d-e6e8-b4da-b5d8-c209e6a8de9c/source/552x414bb.jpg",
"http://is2.mzstatic.com/image/thumb/Purple128/v4/76/91/b0/7691b05e-2d38-4284-29df-a4cbdcc4cbb9/source/552x414bb.jpg",
"http://is1.mzstatic.com/image/thumb/Purple128/v4/ed/e5/d8/ede5d833-3e87-0329-cde5-90208b6b6717/source/552x414bb.jpg",
"http://is4.mzstatic.com/image/thumb/Purple118/v4/f0/f4/22/f0f42237-4ba6-7308-53da-64d433dfc492/source/552x414bb.jpg",
"http://is5.mzstatic.com/image/thumb/Purple118/v4/d0/97/54/d09754a2-334d-292b-9e8a-2ab218631b24/source/552x414bb.jpg"
],
"isGameCenterEnabled": false,
"kind": "software",
"features": ["iosUniversal"],
"supportedDevices": [
"iPad2Wifi-iPad2Wifi",
"iPad23G-iPad23G",
"iPhone4S-iPhone4S",
"iPadThirdGen-iPadThirdGen",
"iPadThirdGen4G-iPadThirdGen4G",
"iPhone5-iPhone5",
"iPodTouchFifthGen-iPodTouchFifthGen",
"iPadFourthGen-iPadFourthGen",
"iPadFourthGen4G-iPadFourthGen4G",
"iPadMini-iPadMini",
"iPadMini4G-iPadMini4G",
"iPhone5c-iPhone5c",
"iPhone5s-iPhone5s",
"iPadAir-iPadAir",
"iPadAirCellular-iPadAirCellular",
"iPadMiniRetina-iPadMiniRetina",
"iPadMiniRetinaCellular-iPadMiniRetinaCellular",
"iPhone6-iPhone6",
"iPhone6Plus-iPhone6Plus",
"iPadAir2-iPadAir2",
"iPadAir2Cellular-iPadAir2Cellular",
"iPadMini3-iPadMini3",
"iPadMini3Cellular-iPadMini3Cellular",
"iPodTouchSixthGen-iPodTouchSixthGen",
"iPhone6s-iPhone6s",
"iPhone6sPlus-iPhone6sPlus",
"iPadMini4-iPadMini4",
"iPadMini4Cellular-iPadMini4Cellular",
"iPadPro-iPadPro",
"iPadProCellular-iPadProCellular",
"iPadPro97-iPadPro97",
"iPadPro97Cellular-iPadPro97Cellular",
"iPhoneSE-iPhoneSE",
"iPhone7-iPhone7",
"iPhone7Plus-iPhone7Plus",
"iPad611-iPad611",
"iPad612-iPad612",
"iPad71-iPad71",
"iPad72-iPad72",
"iPad73-iPad73",
"iPad74-iPad74",
"iPhone8-iPhone8",
"iPhone8Plus-iPhone8Plus",
"iPhoneX-iPhoneX"
],
"screenshotUrls": [
"http://is5.mzstatic.com/image/thumb/Purple118/v4/e7/27/de/e727de2c-76ab-cca9-8a63-990ddc33f233/source/392x696bb.jpg",
"http://is5.mzstatic.com/image/thumb/Purple118/v4/58/59/ed/5859edbf-b49a-a470-3ec1-c1737a55001b/source/392x696bb.jpg",
"http://is4.mzstatic.com/image/thumb/Purple118/v4/56/a1/c4/56a1c417-4187-8bea-c112-525084c015de/source/392x696bb.jpg",
"http://is2.mzstatic.com/image/thumb/Purple118/v4/13/50/58/13505873-5a25-9392-7a8b-fd06cc3ffc52/source/392x696bb.jpg",
"http://is1.mzstatic.com/image/thumb/Purple118/v4/e5/4e/73/e54e7325-ea54-1e6e-5527-13a54d6bc1ac/source/392x696bb.jpg"
],
"advisories": [
"Infrequent/Mild Profanity or Crude Humor",
"Infrequent/Mild Alcohol, Tobacco, or Drug Use or References",
"Infrequent/Mild Mature/Suggestive Themes",
"Infrequent/Mild Sexual Content and Nudity"
],
"trackCensoredName": "Yelp: Discover Local Favorites",
"trackViewUrl":
"https://itunes.apple.com/us/app/yelp-discover-local-favorites/id284910350?mt=8&uo=4",
"contentAdvisoryRating": "12+",
"averageUserRatingForCurrentVersion": 5.0,
"userRatingCountForCurrentVersion": 46879,
"trackContentRating": "12+",
"languageCodesISO2A": [
"CS",
"DA",
"NL",
"EN",
"FI",
"FR",
"DE",
"IT",
"JA",
"MS",
"NB",
"PL",
"PT",
"ZH",
"ES",
"SV",
"ZH",
"TR"
],
"fileSizeBytes": "184651776",
"releaseNotes":
"We know you're the star of the show, so we made a tab just for you and put it up front and center! View your reviews, photos, and everything else you've shared on Yelp.",
"minimumOsVersion": "9.0",
"currency": "USD",
"wrapperType": "software",
"version": "11.24.0",
"description":
"Yelp has over 135 million reviews of businesses worldwide. Whether you’re looking for a new pizza place to try, a great coffee shop nearby, or need to book a haircut, Yelp is your local guide for finding the perfect place to eat, shop, drink, explore, and relax. The Yelp app is available for iPhone, iPad, and Apple Watch.\n\nYelp features:\n\nFood Near You - Find Restaurants\n• Find the newest and hottest restaurants in your area\n• Make reservations, order delivery or pickup—all from your phone\n• Filter restaurant search results by price, location, open now, and more\n\nSearch for Nearby Businesses, Services, & Professionals\n• Discover great local businesses, from hair salons to trusted doctors and movers\n• Read millions of reviews by the Yelp community\n• Home need repairs? Find the best rated contractors and handymen\n• Find great deals offered by local businesses, get quotes instantly, and book appointments\n\nBeauty - Pamper Yourself \n• Find highly-rated salons, spas, massage therapists, and more\n• Book appointments through Yelp at the most relaxing staycation destinations\n\nSearch Filters \n• Filter your search results by neighborhood, distance, rating, price, and hours of operation\n• Look up addresses and phone numbers, call a business, or make reservations directly from the app\n\nOther Features\n• Read expert user reviews and browse through beautiful photos of each business\n• Write and read reviews, check-in to local businesses, upload photos and add tips for other Yelp users\n\nFind local restaurants, read expert customer reviews, and start searching for businesses near you with Yelp. \n\nNeed Help? Contact Yelp at https://www.yelp-support.com/?l=en_US\nNote: Continued use of GPS running can dramatically decrease battery life.",
"artistId": 284910353,
"artistName": "Yelp",
"genres": ["Travel", "Food & Drink"],
"price": 0.0,
"bundleId": "com.yelp.yelpiphone",
"trackId": 284910350,
"trackName": "Yelp: Discover Local Favorites",
"isVppDeviceBasedLicensingEnabled": true,
"primaryGenreName": "Travel",
"releaseDate": "2008-07-11T07:00:00Z",
"formattedPrice": "Free",
"primaryGenreId": 6003,
"sellerName": "Yelp, Inc.",
"genreIds": ["6003", "6023"],
"currentVersionReleaseDate": "2017-10-10T23:16:04Z",
"averageUserRating": 4.5,
"userRatingCount": 426316
},
{
"artistViewUrl":
"https://itunes.apple.com/us/developer/yelp/id284910353?uo=4",
"artworkUrl60":
"http://is4.mzstatic.com/image/thumb/Purple118/v4/ed/6c/68/ed6c68df-420f-ce6c-b1b3-a9b92623d095/source/60x60bb.jpg",
"artworkUrl100":
"http://is4.mzstatic.com/image/thumb/Purple118/v4/ed/6c/68/ed6c68df-420f-ce6c-b1b3-a9b92623d095/source/100x100bb.jpg",
"appletvScreenshotUrls": [],
"artworkUrl512":
"http://is4.mzstatic.com/image/thumb/Purple118/v4/ed/6c/68/ed6c68df-420f-ce6c-b1b3-a9b92623d095/source/512x512bb.jpg",
"ipadScreenshotUrls": [],
"isGameCenterEnabled": false,
"kind": "software",
"features": [],
"supportedDevices": [
"iPad2Wifi-iPad2Wifi",
"iPad23G-iPad23G",
"iPhone4S-iPhone4S",
"iPadThirdGen-iPadThirdGen",
"iPadThirdGen4G-iPadThirdGen4G",
"iPhone5-iPhone5",
"iPodTouchFifthGen-iPodTouchFifthGen",
"iPadFourthGen-iPadFourthGen",
"iPadFourthGen4G-iPadFourthGen4G",
"iPadMini-iPadMini",
"iPadMini4G-iPadMini4G",
"iPhone5c-iPhone5c",
"iPhone5s-iPhone5s",
"iPadAir-iPadAir",
"iPadAirCellular-iPadAirCellular",
"iPadMiniRetina-iPadMiniRetina",
"iPadMiniRetinaCellular-iPadMiniRetinaCellular",
"iPhone6-iPhone6",
"iPhone6Plus-iPhone6Plus",
"iPadAir2-iPadAir2",
"iPadAir2Cellular-iPadAir2Cellular",
"iPadMini3-iPadMini3",
"iPadMini3Cellular-iPadMini3Cellular",
"iPodTouchSixthGen-iPodTouchSixthGen",
"iPhone6s-iPhone6s",
"iPhone6sPlus-iPhone6sPlus",
"iPadMini4-iPadMini4",
"iPadMini4Cellular-iPadMini4Cellular",
"iPadPro-iPadPro",
"iPadProCellular-iPadProCellular",
"iPadPro97-iPadPro97",
"iPadPro97Cellular-iPadPro97Cellular",
"iPhoneSE-iPhoneSE",
"iPhone7-iPhone7",
"iPhone7Plus-iPhone7Plus",
"iPad611-iPad611",
"iPad612-iPad612",
"iPad71-iPad71",
"iPad72-iPad72",
"iPad73-iPad73",
"iPad74-iPad74",
"iPhone8-iPhone8",
"iPhone8Plus-iPhone8Plus",
"iPhoneX-iPhoneX"
],
"screenshotUrls": [
"http://is2.mzstatic.com/image/thumb/Purple128/v4/eb/ba/03/ebba0380-852c-30a0-675b-b7329be67248/source/392x696bb.jpg",
"http://is4.mzstatic.com/image/thumb/Purple128/v4/0d/92/4d/0d924da4-2630-5f0d-3aca-5525e2eb8f27/source/392x696bb.jpg",
"http://is3.mzstatic.com/image/thumb/Purple128/v4/51/9d/64/519d64df-f2aa-badb-71f0-da017c56919e/source/392x696bb.jpg",
"http://is4.mzstatic.com/image/thumb/Purple118/v4/44/49/30/4449303b-fe5f-3dfb-d581-07fe5535f342/source/392x696bb.jpg",
"http://is2.mzstatic.com/image/thumb/Purple128/v4/da/48/a6/da48a688-fbe8-ba6f-7578-400c2e6975ee/source/392x696bb.jpg"
],
"advisories": [
"Infrequent/Mild Mature/Suggestive Themes",
"Infrequent/Mild Sexual Content and Nudity",
"Infrequent/Mild Alcohol, Tobacco, or Drug Use or References",
"Infrequent/Mild Profanity or Crude Humor"
],
"trackCensoredName": "Yelp for Business Owners",
"trackViewUrl":
"https://itunes.apple.com/us/app/yelp-for-business-owners/id936983378?mt=8&uo=4",
"contentAdvisoryRating": "12+",
"averageUserRatingForCurrentVersion": 2.5,
"sellerUrl": "https://biz.yelp.com/",
"userRatingCountForCurrentVersion": 11,
"trackContentRating": "12+",
"languageCodesISO2A": [
"CS",
"DA",
"NL",
"EN",
"FI",
"FR",
"DE",
"IT",
"JA",
"MS",
"NB",
"PL",
"PT",
"ES",
"SV",
"ZH",
"TR"
],
"fileSizeBytes": "103325696",
"releaseNotes":
"Every few weeks, we polish the Yelp for Business Owners app to make it better.",
"minimumOsVersion": "9.0",
"currency": "USD",
"wrapperType": "software",
"version": "3.19.0",
"description":
"Millions of people turn to Yelp every day to make spending decisions. Yelp provides a free suite of tools to showcase your business and connect you to the Yelp community. The Yelp for Business Owners app allows you to view important business analytics and connect with customers, including those who have written reviews for your business. This app puts the power of Yelp’s tools right in your pocket!\n\nNOTE: This app is for business owners to manage their Yelp business pages. If you’re looking for the Yelp app that will help you discover great local businesses, go to https://itunes.apple.com/us/app/yelp/id284910350\n\nUse Yelp for Business Owners to:\n• Track visitor engagement and customer leads from your Yelp Business Page.\n• Respond to reviews with a private message or public comment.\n• Respond to customer inquiries and messages.\n• Upload and manage photos for your business.\n• View reports on ad clicks from Yelp users (advertisers only)\n• Report reviews and messages.\n\nTo get started, download the app and sign in with your business user credentials. If you haven’t yet claimed your business on Yelp, go to biz.yelp.com, and follow the steps to find your business and create your business user account.",
"artistId": 284910353,
"artistName": "Yelp",
"genres": ["Business"],
"price": 0.0,
"bundleId": "com.yelp.bizapp",
"trackId": 936983378,
"trackName": "Yelp for Business Owners",
"isVppDeviceBasedLicensingEnabled": true,
"primaryGenreName": "Business",
"releaseDate": "2014-12-17T06:21:45Z",
"formattedPrice": "Free",
"primaryGenreId": 6000,
"sellerName": "Yelp, Inc.",
"genreIds": ["6000"],
"currentVersionReleaseDate": "2017-10-09T08:17:31Z",
"averageUserRating": 2.0,
"userRatingCount": 256
},
{
"artistViewUrl":
"https://itunes.apple.com/us/developer/yelp/id284910353?uo=4",
"artworkUrl60":
"http://is5.mzstatic.com/image/thumb/Purple128/v4/17/25/49/17254963-d2fb-4dd8-cc36-34912b524538/source/60x60bb.jpg",
"artworkUrl100":
"http://is5.mzstatic.com/image/thumb/Purple128/v4/17/25/49/17254963-d2fb-4dd8-cc36-34912b524538/source/100x100bb.jpg",
"appletvScreenshotUrls": [],
"artworkUrl512":
"http://is5.mzstatic.com/image/thumb/Purple128/v4/17/25/49/17254963-d2fb-4dd8-cc36-34912b524538/source/512x512bb.jpg",
"ipadScreenshotUrls": [
"http://is4.mzstatic.com/image/thumb/Purple118/v4/bf/23/b2/bf23b2e0-0367-328b-6fe2-2247281e1eb1/source/576x768bb.jpg",
"http://is1.mzstatic.com/image/thumb/Purple128/v4/5b/3f/64/5b3f644a-cce6-910d-615d-9c0dd6f7d3f6/source/576x768bb.jpg",
"http://is1.mzstatic.com/image/thumb/Purple128/v4/89/c1/06/89c106c7-03d2-16dd-6c3b-7c91022c029c/source/576x768bb.jpg",
"http://is1.mzstatic.com/image/thumb/Purple128/v4/e4/0a/c4/e40ac48c-b815-1200-a28a-34f4ca5d6f07/source/576x768bb.jpg"
],
"isGameCenterEnabled": false,
"kind": "software",
"features": ["iosUniversal"],
"supportedDevices": [
"iPad2Wifi-iPad2Wifi",
"iPad23G-iPad23G",
"iPhone4S-iPhone4S",
"iPadThirdGen-iPadThirdGen",
"iPadThirdGen4G-iPadThirdGen4G",
"iPhone5-iPhone5",
"iPodTouchFifthGen-iPodTouchFifthGen",
"iPadFourthGen-iPadFourthGen",
"iPadFourthGen4G-iPadFourthGen4G",
"iPadMini-iPadMini",
"iPadMini4G-iPadMini4G",
"iPhone5c-iPhone5c",
"iPhone5s-iPhone5s",
"iPadAir-iPadAir",
"iPadAirCellular-iPadAirCellular",
"iPadMiniRetina-iPadMiniRetina",
"iPadMiniRetinaCellular-iPadMiniRetinaCellular",
"iPhone6-iPhone6",
"iPhone6Plus-iPhone6Plus",
"iPadAir2-iPadAir2",
"iPadAir2Cellular-iPadAir2Cellular",
"iPadMini3-iPadMini3",
"iPadMini3Cellular-iPadMini3Cellular",
"iPodTouchSixthGen-iPodTouchSixthGen",
"iPhone6s-iPhone6s",
"iPhone6sPlus-iPhone6sPlus",
"iPadMini4-iPadMini4",
"iPadMini4Cellular-iPadMini4Cellular",
"iPadPro-iPadPro",
"iPadProCellular-iPadProCellular",
"iPadPro97-iPadPro97",
"iPadPro97Cellular-iPadPro97Cellular",
"iPhoneSE-iPhoneSE",
"iPhone7-iPhone7",
"iPhone7Plus-iPhone7Plus",
"iPad611-iPad611",
"iPad612-iPad612",
"iPad71-iPad71",
"iPad72-iPad72",
"iPad73-iPad73",
"iPad74-iPad74",
"iPhone8-iPhone8",
"iPhone8Plus-iPhone8Plus",
"iPhoneX-iPhoneX"
],
"screenshotUrls": [
"http://is3.mzstatic.com/image/thumb/Purple128/v4/b3/58/b4/b358b493-cb66-e9ad-4131-0f53990aeeab/source/392x696bb.jpg",
"http://is4.mzstatic.com/image/thumb/Purple118/v4/5d/9e/cc/5d9ecc6c-940e-8649-05c5-7ae4769f190d/source/392x696bb.jpg",
"http://is3.mzstatic.com/image/thumb/Purple128/v4/ab/7f/d3/ab7fd3b4-3697-c7d6-3c30-1373f0f6a60d/source/392x696bb.jpg",
"http://is4.mzstatic.com/image/thumb/Purple118/v4/b7/26/b2/b726b298-ccd1-2ac3-32cb-3814ec4c975e/source/392x696bb.jpg"
],
"advisories": [
"Infrequent/Mild Alcohol, Tobacco, or Drug Use or References",
"Infrequent/Mild Profanity or Crude Humor",
"Infrequent/Mild Mature/Suggestive Themes",
"Infrequent/Mild Sexual Content and Nudity"
],
"trackCensoredName": "Eat24 Food Delivery",
"trackViewUrl":
"https://itunes.apple.com/us/app/eat24-food-delivery/id517729226?mt=8&uo=4",
"contentAdvisoryRating": "12+",
"sellerUrl": "https://eat24hours.com/",
"trackContentRating": "12+",
"languageCodesISO2A": ["EN"],
"fileSizeBytes": "85094400",
"releaseNotes":
"Minor bug fixes and improvements. Also... PLOT TWIST: GrubHub is our dad!\n\nThanks for reading. Love, @Eat24",
"minimumOsVersion": "9.0",
"currency": "USD",
"wrapperType": "software",
"version": "6.23.0",
"description":
"Your iPhone can now feed you. No, your phone hasn’t learned to cook but you won’t have to either, thanks to the free, easy-to-use Eat24 Order Food Delivery & Takeout app.\n\nOrder food delivery from over 40,000 restaurants in 1,500+ cities, with more being added each day. Search 24 hours a day from wherever you are, or wherever you’re going to be when you’re ready for some food. The Eat24 app remembers your preferences, which saves you time, and gives you coupons on a regular basis, which saves you money. Oh, and because 24 is in our name, that means you can definitely order 24 appetizers for yourself and not feel the least bit bad about it. At least we're pretty sure that's how it works.\n\nWhat can our app do?\n- Search for specific cuisines, restaurants...even particular dishes.\n\n- It has Yelp inside. See what the foodies of Yelp think about a restaurant without leaving the app.\n\n- Eye Candy. Eat with your eyes and browse delicious food photos on the restaurant menu page. As if you weren’t hungry enough already.\n\n- In unfamiliar territory? Search by your current location, order, and the Eat24 app will have it waiting (well, really the restaurant will, but you get the idea).\n\n- Like to play favorites? We understand completely (Mom always liked us best). The Eat24 app lets you save your favorite restaurants so you can find them more easily next time.\n\n- Using filters to sort by distance, newest, top rated, delivery/pickup. Plus sort by personal preferences like spicy, healthy, and more. \n\n- Do you enjoy entering your credit card numbers over and over again? That’s a rhetorical question, no one does. Which is why the Eat24 app lets you scan your credit card directly into the app and securely stores your payment information for you.\n\n- Hate credit cards? Use Apple Pay or PayPal!\n\n- 24 Hour Live chat and order status support. If it isn’t right, we’ll make it right. No robots, no problem.\n\n- Cash back for future orders through our CashCoupon rewards system.\n\n- Exclusive offers and content through our Eat24Hours VIP program.\n\n- Eat24 Notes. Write a note about your meal right on your phone and remind yourself to order/not order an item again. (Because hunger affects memory in mysterious ways)\n\n- We added the popular Tweet My Meal function, because everyone knows that if you didn’t tweet about it, it didn’t actually happen.\n\nBest of all, once your order’s in, Eat24 handles every aspect of the delivery experience. Which means no more screwed-up orders. No more wondering where the delivery driver is. Just the ability to take back a few precious minutes of your day and enjoy. Something not quite right? Hit up our 24 Hours Live Support within the app and chat with a real human being about any issue or question you may have. We’ll make things right.\n\nTap, Relax and Enjoy with the Eat24 app in Los Angeles, San Francisco, Seattle, Washington DC, Miami, Baltimore, Las Vegas, Boston, Chicago, New York City, San Diego, Houston, Denver, Atlanta, Phoenix, Austin, Philadelphia and almost every other U.S. city, with more being added every day",
"artistId": 284910353,
"artistName": "Yelp",
"genres": ["Food & Drink", "Travel"],
"price": 0.0,
"bundleId": "com.eat24.eat24App",
"trackId": 517729226,
"trackName": "Eat24 Food Delivery",
"isVppDeviceBasedLicensingEnabled": true,
"primaryGenreName": "Food & Drink",
"releaseDate": "2012-05-24T20:45:58Z",
"formattedPrice": "Free",
"primaryGenreId": 6023,
"sellerName": "Yelp, Inc.",
"genreIds": ["6023", "6003"],
"currentVersionReleaseDate": "2017-10-10T13:15:33Z",
"averageUserRating": 4.5,
"userRatingCount": 16584
},
{
"artistViewUrl":
"https://itunes.apple.com/us/developer/groupon-inc/id350020099?uo=4",
"artworkUrl60":
"http://is1.mzstatic.com/image/thumb/Purple128/v4/e4/7a/10/e47a1070-b973-37cb-8bd7-d3a5a4d54d6b/source/60x60bb.jpg",
"artworkUrl100":
"http://is1.mzstatic.com/image/thumb/Purple128/v4/e4/7a/10/e47a1070-b973-37cb-8bd7-d3a5a4d54d6b/source/100x100bb.jpg",
"appletvScreenshotUrls": [],
"artworkUrl512":
"http://is1.mzstatic.com/image/thumb/Purple128/v4/e4/7a/10/e47a1070-b973-37cb-8bd7-d3a5a4d54d6b/source/512x512bb.jpg",
"ipadScreenshotUrls": [
"http://is3.mzstatic.com/image/thumb/Purple128/v4/e9/4c/17/e94c171d-9913-fc8f-7322-3850577114d9/source/576x768bb.jpg",
"http://is3.mzstatic.com/image/thumb/Purple128/v4/69/89/46/6989461f-e6ec-4ba6-f34f-4f3b177911e2/source/576x768bb.jpg",
"http://is3.mzstatic.com/image/thumb/Purple118/v4/c8/28/09/c82809b6-5ec3-91ee-218d-c33ab1f4657b/source/576x768bb.jpg",
"http://is4.mzstatic.com/image/thumb/Purple118/v4/ae/a0/da/aea0dafc-6e40-9586-03f7-9b09bd88086e/source/576x768bb.jpg"
],
"isGameCenterEnabled": false,
"kind": "software",
"features": ["iosUniversal"],
"supportedDevices": [
"iPad2Wifi-iPad2Wifi",
"iPad23G-iPad23G",
"iPhone4S-iPhone4S",
"iPadThirdGen-iPadThirdGen",
"iPadThirdGen4G-iPadThirdGen4G",
"iPhone5-iPhone5",
"iPodTouchFifthGen-iPodTouchFifthGen",
"iPadFourthGen-iPadFourthGen",
"iPadFourthGen4G-iPadFourthGen4G",
"iPadMini-iPadMini",
"iPadMini4G-iPadMini4G",
"iPhone5c-iPhone5c",
"iPhone5s-iPhone5s",
"iPadAir-iPadAir",
"iPadAirCellular-iPadAirCellular",
"iPadMiniRetina-iPadMiniRetina",
"iPadMiniRetinaCellular-iPadMiniRetinaCellular",
"iPhone6-iPhone6",
"iPhone6Plus-iPhone6Plus",
"iPadAir2-iPadAir2",
"iPadAir2Cellular-iPadAir2Cellular",
"iPadMini3-iPadMini3",
"iPadMini3Cellular-iPadMini3Cellular",
"iPodTouchSixthGen-iPodTouchSixthGen",
"iPhone6s-iPhone6s",
"iPhone6sPlus-iPhone6sPlus",
"iPadMini4-iPadMini4",
"iPadMini4Cellular-iPadMini4Cellular",
"iPadPro-iPadPro",
"iPadProCellular-iPadProCellular",
"iPadPro97-iPadPro97",
"iPadPro97Cellular-iPadPro97Cellular",
"iPhoneSE-iPhoneSE",
"iPhone7-iPhone7",
"iPhone7Plus-iPhone7Plus",
"iPad611-iPad611",
"iPad612-iPad612",
"iPad71-iPad71",
"iPad72-iPad72",
"iPad73-iPad73",
"iPad74-iPad74",
"iPhone8-iPhone8",
"iPhone8Plus-iPhone8Plus",
"iPhoneX-iPhoneX"
],
"screenshotUrls": [
"http://is5.mzstatic.com/image/thumb/Purple118/v4/e7/bb/4d/e7bb4da9-5322-d279-6f62-a1d517e56ef3/source/392x696bb.jpg",
"http://is5.mzstatic.com/image/thumb/Purple118/v4/67/c4/d1/67c4d129-85d3-b545-a3c1-0e83c9a5464a/source/392x696bb.jpg",
"http://is1.mzstatic.com/image/thumb/Purple128/v4/a6/8b/dc/a68bdcb9-2e81-1392-7ae6-ab9b9a3b7d26/source/392x696bb.jpg",
"http://is5.mzstatic.com/image/thumb/Purple118/v4/dd/a1/86/dda186b3-a0dc-44f9-571c-9c6c2406d7ea/source/392x696bb.jpg",
"http://is4.mzstatic.com/image/thumb/Purple128/v4/64/1d/0d/641d0d9d-738a-61e3-7813-3d420c8f916f/source/392x696bb.jpg"
],
"advisories": [
"Infrequent/Mild Mature/Suggestive Themes",
"Infrequent/Mild Alcohol, Tobacco, or Drug Use or References"
],
"trackCensoredName": "Groupon",
"trackViewUrl":
"https://itunes.apple.com/us/app/groupon/id352683833?mt=8&uo=4",
"contentAdvisoryRating": "12+",
"averageUserRatingForCurrentVersion": 4.5,
"sellerUrl": "http://www.groupon.com",
"userRatingCountForCurrentVersion": 236,
"trackContentRating": "12+",
"languageCodesISO2A": [
"NL",
"EN",
"FR",
"DE",
"IT",
"JA",
"PL",
"PT",
"ES",
"ZH"
],
"fileSizeBytes": "138606592",
"releaseNotes":
"Thanks for using the Groupon app! Here at Groupon, we strive to deliver the best deals to you by improving your experience every time we release a new version of our app. Our updates include many new features, improvements and bug fixes.",
"minimumOsVersion": "9.0",
"currency": "USD",
"wrapperType": "software",
"version": "17.13",
"description":
"Download Groupon and start saving on everything you’ve been looking for! Find great deals on all the best stuff to eat, see and do near you in hundreds of locations around the world.\n\nWhether you’re craving to try a new restaurant downtown, in need of a relaxing massage, looking for a new gym, shopping for the latest fashion trends or daydreaming about a hotel for a tropical getaway, Groupon has you covered with all the unique local experiences and discounts you could ever wish for!\n\nGet ready to start your New Year shopping for popular fashion, electronics, beauty products, toys and other awesome products with our local deals! \n\nWith Groupon, you can:\n\nGet Access to Incredible Deals Near You \n• Save up to 70% on 1,000s of local deals.\n• Browse outstanding discounts and coupons for your favorite hair or beauty salon, pizza place, yoga studio and more.\n• Discover the hottest spots in your city including top-rated restaurants, spas and gyms.\n• Buy and redeem Groupon deals directly from your mobile device.\n\nSave Big on Products\n• Shop Groupon Goods for discounts on delicious food, designer brands, electronics, everyday essentials and fun finds delivered right to your door.\n\nTravel for Cheap\n• Collect the fanciest hotel shampoos and travel to exotic destinations with Groupon Getaways.\n• Always find something fun to do on your next trip by turning on your location settings.\n\nKeep Things Simple\n• Track your vouchers by location and expiration date.\n• Save ink and avoid traumatic paper cuts by never printing another coupon or voucher again.\n• Instantly redeem vouchers for local deals without the hassle of clipping coupons.\n• Use Apple Pay to buy deals with a single touch.\n\nAs a Local Marketplace, Groupon provides you with realtime recommendations for great deals near you. Groupon takes steps to limit usage of GPS to preserve battery life. That said, as with any functionality of this type, continued use of GPS running in the background can dramatically decrease battery life. \n\nPut down the coupon book and download Groupon to begin exploring the best that your city has to offer, with savings of up to 70%.\n\nShare Groupon deals with friends, family and fiscally responsible robots on your social media accounts.\n\nGot any problems? Tell us all about it at https://www.groupon.com/customer_support",
"artistId": 350020099,
"artistName": "Groupon, Inc.",
"genres": ["Shopping", "Food & Drink"],
"price": 0.0,
"bundleId": "com.groupon.grouponapp",
"trackId": 352683833,
"trackName": "Groupon",
"isVppDeviceBasedLicensingEnabled": true,
"primaryGenreName": "Shopping",
"releaseDate": "2010-02-27T16:51:57Z",
"formattedPrice": "Free",
"primaryGenreId": 6024,
"sellerName": "Groupon, Inc.",
"genreIds": ["6024", "6023"],
"currentVersionReleaseDate": "2017-10-03T18:31:51Z",
"averageUserRating": 4.5,
"userRatingCount": 425266
},
{
"artistViewUrl":
"https://itunes.apple.com/us/developer/socratic/id969678067?uo=4",
"artworkUrl60":
"http://is5.mzstatic.com/image/thumb/Purple118/v4/f8/93/10/f89310d8-9e77-7e51-b6f5-8aef525aa57c/source/60x60bb.jpg",
"artworkUrl100":
"http://is5.mzstatic.com/image/thumb/Purple118/v4/f8/93/10/f89310d8-9e77-7e51-b6f5-8aef525aa57c/source/100x100bb.jpg",
"appletvScreenshotUrls": [],
"artworkUrl512":
"http://is5.mzstatic.com/image/thumb/Purple118/v4/f8/93/10/f89310d8-9e77-7e51-b6f5-8aef525aa57c/source/512x512bb.jpg",
"ipadScreenshotUrls": [
"http://is1.mzstatic.com/image/thumb/Purple118/v4/df/a5/78/dfa57815-772f-115f-e865-1c998404d38b/source/576x768bb.jpg",
"http://is5.mzstatic.com/image/thumb/Purple118/v4/d5/12/9f/d5129f7f-7ee7-f3ba-769b-6759a657b27f/source/576x768bb.jpg",
"http://is2.mzstatic.com/image/thumb/Purple118/v4/b7/e0/ab/b7e0ab68-39a1-c12f-5d89-259e5f0d3bb7/source/576x768bb.jpg",
"http://is5.mzstatic.com/image/thumb/Purple128/v4/e0/09/d2/e009d2c2-cb70-a2e8-2ba9-b5f8a183354d/source/576x768bb.jpg",
"http://is5.mzstatic.com/image/thumb/Purple118/v4/02/35/b8/0235b818-48cc-22ba-f746-ff25f8b5ce4f/source/576x768bb.jpg"
],
"isGameCenterEnabled": false,
"kind": "software",
"features": ["iosUniversal"],
"supportedDevices": [
"iPad2Wifi-iPad2Wifi",
"iPad23G-iPad23G",
"iPhone4S-iPhone4S",
"iPadThirdGen-iPadThirdGen",
"iPadThirdGen4G-iPadThirdGen4G",
"iPhone5-iPhone5",
"iPodTouchFifthGen-iPodTouchFifthGen",
"iPadFourthGen-iPadFourthGen",
"iPadFourthGen4G-iPadFourthGen4G",
"iPadMini-iPadMini",
"iPadMini4G-iPadMini4G",
"iPhone5c-iPhone5c",
"iPhone5s-iPhone5s",
"iPadAir-iPadAir",
"iPadAirCellular-iPadAirCellular",
"iPadMiniRetina-iPadMiniRetina",
"iPadMiniRetinaCellular-iPadMiniRetinaCellular",
"iPhone6-iPhone6",
"iPhone6Plus-iPhone6Plus",
"iPadAir2-iPadAir2",
"iPadAir2Cellular-iPadAir2Cellular",
"iPadMini3-iPadMini3",
"iPadMini3Cellular-iPadMini3Cellular",
"iPodTouchSixthGen-iPodTouchSixthGen",
"iPhone6s-iPhone6s",
"iPhone6sPlus-iPhone6sPlus",
"iPadMini4-iPadMini4",
"iPadMini4Cellular-iPadMini4Cellular",
"iPadPro-iPadPro",
"iPadProCellular-iPadProCellular",
"iPadPro97-iPadPro97",
"iPadPro97Cellular-iPadPro97Cellular",
"iPhoneSE-iPhoneSE",
"iPhone7-iPhone7",
"iPhone7Plus-iPhone7Plus",
"iPad611-iPad611",
"iPad612-iPad612",
"iPad71-iPad71",
"iPad72-iPad72",
"iPad73-iPad73",
"iPad74-iPad74",
"iPhone8-iPhone8",
"iPhone8Plus-iPhone8Plus",
"iPhoneX-iPhoneX"
],
"screenshotUrls": [
"http://is2.mzstatic.com/image/thumb/Purple128/v4/a8/fe/7d/a8fe7d46-a13f-4165-e739-ace010be88f9/source/392x696bb.jpg",
"http://is3.mzstatic.com/image/thumb/Purple118/v4/64/af/6b/64af6baf-0b87-677d-e969-d4613d96ee75/source/392x696bb.jpg",
"http://is3.mzstatic.com/image/thumb/Purple118/v4/a6/ef/1d/a6ef1de9-9b8a-eec0-f135-d9f40794db29/source/392x696bb.jpg",
"http://is4.mzstatic.com/image/thumb/Purple128/v4/a3/86/e9/a386e98a-5f47-ad12-a8e4-baeaeb09c76e/source/392x696bb.jpg",
"http://is5.mzstatic.com/image/thumb/Purple128/v4/52/98/8d/52988db5-9851-9c5d-7d6a-0d11ea3235a5/source/392x696bb.jpg"
],
"advisories": [
"Infrequent/Mild Horror/Fear Themes",
"Infrequent/Mild Mature/Suggestive Themes",
"Infrequent/Mild Profanity or Crude Humor",
"Infrequent/Mild Cartoon or Fantasy Violence"
],
"trackCensoredName": "Socratic Math & Homework Help",
"trackViewUrl":
"https://itunes.apple.com/us/app/socratic-math-homework-help/id1014164514?mt=8&uo=4",
"contentAdvisoryRating": "9+",
"trackContentRating": "9+",
"languageCodesISO2A": ["EN", "FR", "DE", "ID", "PT", "ES"],
"fileSizeBytes": "85720064",
"releaseNotes":
"Study Groups are HERE! The best way to get instant help on your homework from friends and classmates. You heard it here first—so drop everything and update, y’all!\n\nIt’s like a group chat, but better: see who’s online, share class notes, and get your homework done *together* without even switching apps. And if you don’t know many people in class, now you have a chill place to ask for help!\n\nHighlights:\n- Create Study Groups for your toughest classes (or like, all of them)\n- Invite classmates via Messenger, Kik, or wherever they are\n- Ask questions, share notes, and get help from each other when you need it\n\nNow get after it and make those Study Groups, people. You’re welcome.",
"minimumOsVersion": "9.0",
"currency": "USD",
"wrapperType": "software",
"version": "4.0",
"description":
"You’re about to download the fastest homework helper and math solver around (aka, your new best friend). Take a PHOTO of your homework question or math equation and get INSTANT explanations, videos, and step-by-step help. And yup—it’s 100% free, NO in-app purchases. \n\nWork TOGETHER on homework: create Study Groups, easily chat classmates, and send questions to friends.\n\nSupports ALL subjects, including Math (Algebra, Calculus, Statistics, Graphing, etc), Science, Chemistry, History, English, Economics, and more. *Featured on the App Store, Time Magazine & The Verge.*\n\n~~ How it works ~~\nTake a picture of a homework problem and our AI (Artificial Intelligence) instantly figures out which concepts you need to learn in order to answer it!\nSocratic’s AI combines cutting-edge computer vision technologies, which read questions from images, with machine learning classifiers built using millions of sample homework questions, to accurately predict which concepts will help you solve your question.\nSocratic’s team of educators creates visual, jargon-free content. The best online videos are curated from sources like Khan Academy, Crash Course, and more.\nWhether doing HW for Biology, Algebra, US History, or Chemistry, Socratic can help you learn better and faster!\nQuestions or support? Tweet us @SocraticOrg or email us at hello@socratic.org. \n\nLoving the app? Please (re)post a review. Every 5 star review helps us become a homework lifesaver to more people.",
"artistId": 969678067,
"artistName": "Socratic",
"genres": ["Education", "Utilities"],
"price": 0.0,
"bundleId": "org.socratic.Socratic",
"trackId": 1014164514,
"trackName": "Socratic Math & Homework Help",
"isVppDeviceBasedLicensingEnabled": true,
"primaryGenreName": "Education",
"releaseDate": "2015-07-09T18:18:32Z",
"formattedPrice": "Free",
"primaryGenreId": 6017,
"sellerName": "Vespr Inc",
"genreIds": ["6017", "6002"],
"currentVersionReleaseDate": "2017-10-10T15:35:14Z",
"averageUserRating": 5.0,
"userRatingCount": 8699
},
{
"artistViewUrl":
"https://itunes.apple.com/us/developer/chegg-inc/id385758166?uo=4",
"artworkUrl60":
"http://is2.mzstatic.com/image/thumb/Purple128/v4/f7/df/de/f7dfdeb8-24a9-dca0-2aea-33674aae3c14/source/60x60bb.jpg",
"artworkUrl100":
"http://is2.mzstatic.com/image/thumb/Purple128/v4/f7/df/de/f7dfdeb8-24a9-dca0-2aea-33674aae3c14/source/100x100bb.jpg",
"appletvScreenshotUrls": [],
"artworkUrl512":
"http://is2.mzstatic.com/image/thumb/Purple128/v4/f7/df/de/f7dfdeb8-24a9-dca0-2aea-33674aae3c14/source/512x512bb.jpg",
"ipadScreenshotUrls": [
"http://is3.mzstatic.com/image/thumb/Purple71/v4/b9/e7/02/b9e702c6-4591-7bf5-26b0-169bf37d45aa/source/576x768bb.jpg",
"http://is4.mzstatic.com/image/thumb/Purple62/v4/69/4e/d2/694ed2b1-3783-2d3e-718c-a91fe217d4ad/source/576x768bb.jpg",
"http://is5.mzstatic.com/image/thumb/Purple71/v4/6c/d0/58/6cd05818-ffb0-075e-15b1-0ee662b992ac/source/576x768bb.jpg",
"http://is5.mzstatic.com/image/thumb/Purple62/v4/ff/b1/29/ffb129b4-8d62-7101-8723-28916289cd5b/source/576x768bb.jpg",
"http://is1.mzstatic.com/image/thumb/Purple62/v4/df/f9/04/dff90498-f8e3-b422-1692-181be7244034/source/576x768bb.jpg"
],
"isGameCenterEnabled": false,
"kind": "software",
"features": ["iosUniversal"],
"supportedDevices": [
"iPad2Wifi-iPad2Wifi",
"iPad23G-iPad23G",
"iPhone4S-iPhone4S",
"iPadThirdGen-iPadThirdGen",
"iPadThirdGen4G-iPadThirdGen4G",
"iPhone5-iPhone5",
"iPodTouchFifthGen-iPodTouchFifthGen",
"iPadFourthGen-iPadFourthGen",
"iPadFourthGen4G-iPadFourthGen4G",
"iPadMini-iPadMini",
"iPadMini4G-iPadMini4G",
"iPhone5c-iPhone5c",
"iPhone5s-iPhone5s",
"iPadAir-iPadAir",
"iPadAirCellular-iPadAirCellular",
"iPadMiniRetina-iPadMiniRetina",
"iPadMiniRetinaCellular-iPadMiniRetinaCellular",
"iPhone6-iPhone6",
"iPhone6Plus-iPhone6Plus",
"iPadAir2-iPadAir2",
"iPadAir2Cellular-iPadAir2Cellular",
"iPadMini3-iPadMini3",
"iPadMini3Cellular-iPadMini3Cellular",
"iPodTouchSixthGen-iPodTouchSixthGen",
"iPhone6s-iPhone6s",
"iPhone6sPlus-iPhone6sPlus",
"iPadMini4-iPadMini4",
"iPadMini4Cellular-iPadMini4Cellular",
"iPadPro-iPadPro",
"iPadProCellular-iPadProCellular",
"iPadPro97-iPadPro97",
"iPadPro97Cellular-iPadPro97Cellular",
"iPhoneSE-iPhoneSE",
"iPhone7-iPhone7",
"iPhone7Plus-iPhone7Plus",
"iPad611-iPad611",
"iPad612-iPad612",
"iPad71-iPad71",
"iPad72-iPad72",
"iPad73-iPad73",
"iPad74-iPad74",
"iPhone8-iPhone8",
"iPhone8Plus-iPhone8Plus",
"iPhoneX-iPhoneX"
],
"screenshotUrls": [
"http://is4.mzstatic.com/image/thumb/Purple62/v4/6f/c8/48/6fc848dd-08d2-8168-5bff-c871971b7ea4/source/392x696bb.jpg",
"http://is2.mzstatic.com/image/thumb/Purple71/v4/e1/27/d5/e127d52f-2896-9e43-93bb-22554e0c47a3/source/392x696bb.jpg",
"http://is4.mzstatic.com/image/thumb/Purple71/v4/27/b6/e2/27b6e253-a930-d1fa-6bba-d068f0b606a8/source/392x696bb.jpg",
"http://is4.mzstatic.com/image/thumb/Purple62/v4/cf/7f/ea/cf7fea51-ba7f-1632-9415-5c9e0ef75149/source/392x696bb.jpg",
"http://is3.mzstatic.com/image/thumb/Purple71/v4/0a/e6/3d/0ae63d96-6545-7c0a-a11c-ece836f31baf/source/392x696bb.jpg"
],
"advisories": [],
"trackCensoredName": "Chegg: Textbook Rental, 24/7 Homework Help + More",
"trackViewUrl":
"https://itunes.apple.com/us/app/chegg-textbook-rental-24-7-homework-help-more/id385758163?mt=8&uo=4",
"contentAdvisoryRating": "4+",
"averageUserRatingForCurrentVersion": 4.5,
"sellerUrl": "http://www.chegg.com/mobile",
"userRatingCountForCurrentVersion": 376,
"trackContentRating": "4+",
"languageCodesISO2A": ["EN"],
"fileSizeBytes": "111240192",
"releaseNotes":
"We update the app regularly so we can make it better for you. \nGet the latest version for all of the available features and improvements. \nThanks for using Chegg!",
"minimumOsVersion": "8.0",
"currency": "USD",
"wrapperType": "software",
"version": "2.32.5",
"description":
"Save up to 90% on textbooks when you use Chegg to get the books and textbooks you need for your classes.* Skip the lines at the bookstore; with Chegg, you can rent textbooks for school (or buy them!) and instantly access eTextbooks for when you need required materials ASAP. \n\nNeed college textbooks or other required classroom materials? We’ve got you covered:\n• Easily search for textbooks by title, author, ISBN or by scanning a barcode. Say what?? \n• Buy or rent textbooks and eTextbooks like a boss. \n• While your book is on the way, get 7-day FREE instant access to your eTextbook so you can get started on that math homework or physics assignment right away.\n• Read eTextbooks on any device – desktop, tablet, smartphone or crystal ball.\n\nLooking for homework help, cramming for midterms or getting prepped for a final exam? Look no further. With Chegg Study on the Chegg app you can:\n• Tap into our massive library of more than 2.5 million step-by-step textbook solutions. From astronomy to zoology, we’ve got the homework solutions you need for your toughest assignments and problem sets.\n• Need help with a problem that isn’t from your textbook? Snap a picture of it and submit it instantly to our community of subject experts. Get an answer back in as little as 2 hours. Now you’re making progress….\n• Search our archive of answers to millions of homework questions to get help in any other subject you’re struggling with. \n• Need instant help? Search for an online tutor who can help 24/7.\n\nPLUS: Just in time for the end of fall semester/quarter, we want to buy textbooks from you to give you extra cash (and us, more textbooks to rent). Scan your textbook ISBN to find out how much cash we’ll hook you up with. Print your your label, pop in the mail and voila! More cash for you, more books for us. \n\nThe fine print: \nChegg Study subscriptions will be charged to your credit card through your iTunes account.\nYour $14.95 subscription will automatically renew each month unless cancelled at least 24 hours before the end of the current period. Manage your subscriptions in the Account Settings after purchase.\n\n \nFor bug reports or general feedback, email us to appfeedback@chegg.com or tweet @Chegg #iosapp\n\nPrivacy Policy - http://www.chegg.com/privacypolicy/\nTerms of Use - http://www.chegg.com/termsofuse/\n\n*Save up to 80% on rentals and eTextbooks. Up to 90% on used. Savings calculations are off the list price of physical textbooks.",
"artistId": 385758166,
"artistName": "Chegg, Inc",
"genres": ["Education", "Books"],
"price": 0.0,
"bundleId": "com.chegg.mobile.consumer",
"trackId": 385758163,
"trackName": "Chegg: Textbook Rental, 24/7 Homework Help + More",
"isVppDeviceBasedLicensingEnabled": true,
"primaryGenreName": "Education",
"releaseDate": "2010-08-10T01:16:46Z",
"formattedPrice": "Free",
"primaryGenreId": 6017,
"sellerName": "Chegg, Inc.",
"genreIds": ["6017", "6018"],
"currentVersionReleaseDate": "2017-07-21T20:43:43Z",
"averageUserRating": 4.0,
"userRatingCount": 8945
},
{
"artistViewUrl":
"https://itunes.apple.com/us/developer/gotit-inc/id797535511?uo=4",
"artworkUrl60":
"http://is3.mzstatic.com/image/thumb/Purple118/v4/61/bd/80/61bd80c0-db62-d44f-ee0a-15c171cf4c56/source/60x60bb.jpg",
"artworkUrl100":
"http://is3.mzstatic.com/image/thumb/Purple118/v4/61/bd/80/61bd80c0-db62-d44f-ee0a-15c171cf4c56/source/100x100bb.jpg",
"appletvScreenshotUrls": [],
"artworkUrl512":
"http://is3.mzstatic.com/image/thumb/Purple118/v4/61/bd/80/61bd80c0-db62-d44f-ee0a-15c171cf4c56/source/512x512bb.jpg",
"ipadScreenshotUrls": [
"http://is2.mzstatic.com/image/thumb/Purple128/v4/2b/4e/20/2b4e204a-7369-92d1-3d53-9d8501460ce1/source/576x768bb.jpg",
"http://is1.mzstatic.com/image/thumb/Purple118/v4/67/01/2b/67012b7e-446b-42a7-0592-b88d3251099c/source/576x768bb.jpg",
"http://is4.mzstatic.com/image/thumb/Purple128/v4/19/a8/7a/19a87a14-cb01-db01-24b4-760584efdda6/source/576x768bb.jpg"
],
"isGameCenterEnabled": false,
"kind": "software",
"features": ["iosUniversal"],
"supportedDevices": [
"iPad2Wifi-iPad2Wifi",
"iPad23G-iPad23G",
"iPhone4S-iPhone4S",
"iPadThirdGen-iPadThirdGen",
"iPadThirdGen4G-iPadThirdGen4G",
"iPhone5-iPhone5",
"iPodTouchFifthGen-iPodTouchFifthGen",
"iPadFourthGen-iPadFourthGen",
"iPadFourthGen4G-iPadFourthGen4G",
"iPadMini-iPadMini",
"iPadMini4G-iPadMini4G",
"iPhone5c-iPhone5c",
"iPhone5s-iPhone5s",
"iPadAir-iPadAir",
"iPadAirCellular-iPadAirCellular",
"iPadMiniRetina-iPadMiniRetina",
"iPadMiniRetinaCellular-iPadMiniRetinaCellular",
"iPhone6-iPhone6",
"iPhone6Plus-iPhone6Plus",
"iPadAir2-iPadAir2",
"iPadAir2Cellular-iPadAir2Cellular",
"iPadMini3-iPadMini3",
"iPadMini3Cellular-iPadMini3Cellular",
"iPodTouchSixthGen-iPodTouchSixthGen",
"iPhone6s-iPhone6s",
"iPhone6sPlus-iPhone6sPlus",
"iPadMini4-iPadMini4",
"iPadMini4Cellular-iPadMini4Cellular",
"iPadPro-iPadPro",
"iPadProCellular-iPadProCellular",
"iPadPro97-iPadPro97",
"iPadPro97Cellular-iPadPro97Cellular",
"iPhoneSE-iPhoneSE",
"iPhone7-iPhone7",
"iPhone7Plus-iPhone7Plus",
"iPad611-iPad611",
"iPad612-iPad612",
"iPad71-iPad71",
"iPad72-iPad72",
"iPad73-iPad73",
"iPad74-iPad74",
"iPhone8-iPhone8",
"iPhone8Plus-iPhone8Plus",
"iPhoneX-iPhoneX"
],
"screenshotUrls": [
"http://is5.mzstatic.com/image/thumb/Purple128/v4/61/f6/c3/61f6c31f-a84b-c1ff-2027-8e5592b3a08d/source/392x696bb.jpg",
"http://is5.mzstatic.com/image/thumb/Purple128/v4/96/86/39/96863936-8116-5bb3-a948-a11ee40d6e87/source/392x696bb.jpg",
"http://is1.mzstatic.com/image/thumb/Purple128/v4/ec/9c/ba/ec9cba85-5fbb-29f4-7daf-3d39079ad557/source/392x696bb.jpg"
],
"advisories": ["Infrequent/Mild Mature/Suggestive Themes"],
"trackCensoredName": "Got It Study - Homework Help",
"trackViewUrl":
"https://itunes.apple.com/us/app/got-it-study-homework-help/id797535508?mt=8&uo=4",
"contentAdvisoryRating": "9+",
"averageUserRatingForCurrentVersion": 4.0,
"sellerUrl": "http://www.gotitapp.co",
"userRatingCountForCurrentVersion": 25,
"trackContentRating": "9+",
"languageCodesISO2A": ["EN"],
"fileSizeBytes": "59900928",
"releaseNotes":
"We just added Financial Accounting! Get a quick 1:1 tutoring chat session within 30 seconds - 24x7",
"minimumOsVersion": "9.0",
"currency": "USD",
"wrapperType": "software",
"version": "4.0.2",
"description":
"Stuck on a homework problem, test question, or assignment and need to solve the problem right away? We’re the ONLY app that guarantees you Math, Physics, Chemistry help whenever you need it - 24x7, anytime, anywhere. Take a photo of your problem with our FREE Photo Equation Solver, and instantly get a step-by-step solution. Photo Equation Solver is free to use and unlimited so you can stress less and save time figuring out a problem. Need additional tutoring help? Get a quick 1:1 tutoring chat session within 30 seconds with a Study Expert tutor. We make it really easy for you to stress less, save time, and get better grades!\n\n- Snap a quick picture of your Algebra, Geometry, Trig, Calculus, Physics, Chemistry, ACT or SAT Math homework problem.\n- Instantly get FREE homework help from our photo equation solver with step-by-step explanations for your equation problems.\n- Connect instantly to a Study Expert tutor within 30-seconds for a personalized, 10-minute chat session. Our live Study Experts help you solve any problems with words, diagrams or complex questions. Need more time with your Study Expert? Get another 10 minutes of tutoring -- just ask your Study Expert before your chat session ends.\n\nGot It Study connects every learner with qualified, vetted STEM Study Experts who have relevant expertise solving millions of problems.\n\nOur live Study Expert tutors are the best of the best! Study Expert tutors go through rigorous training and qualification process to become a Got It Study Expert tutor. They care about tutoring and teaching you how to solve your problem until you fully understand what you’re learning.\n\nWe’re the ONLY app that can solve Math and Science word problems and diagrams not just equations plus AP subjects as well!\n\nHigh school, university, community college or homeschooled students get better grades and improve their test scores with Got It. No upfront inconvenient scheduling required and extremely affordable tutoring.\n\nOur Study Experts all have college degrees in Math or Science and come from different occupations- from a teacher to an engineer to product manager and more. We guarantee you’ll get the right solution!\n\n* Students Love Got It Study*\n\n“If you are in a Math class, this is the best app you can download! It’s perfect. They don’t just give you the answer, they teach you how to solve it.”\n\n“I totally love this app. Not only will the experts help me find the answer, but they will walk me through it and explain the entire question. I encourage every student to get it!”\n\n“Thank you so much for this app - it is literally a life saver! I don’t think anyone realizes how useful it is and how many times it has saved my skin!”\n\n“If I could meet the creator of this app, I would give you a huge hug! You have helped me so much and lowered my stress level by at least 99%. I not only love that you give me the answer, but follow a step-by-step procedure to get it!”\n\n“I’ve downloaded many apps like this, but I’d say that this is best by far. I absolutely love this app! I’m already getting really good grades because of it.”\n\n“So happy to have found this app. The experts are extremely helpful.”\n\nPlease take a moment to rate and review, we greatly appreciate your support!\n\nLike us on Facebook or follow us on Instagram/Twitter for all the latest updates:\nhttps://www.facebook.com/gotithelp\nhttps://www.instagram.com/Got_It_Study\nhttps://twitter.com/Got_It_Study\n\nFor questions or feedback, please email us at support@gotitapp.co",
"artistId": 797535511,
"artistName": "GotIt! Inc.",
"genres": ["Education", "Productivity"],
"price": 0.0,
"bundleId": "com.tutoruniverse.chyll",
"trackId": 797535508,
"trackName": "Got It Study - Homework Help",
"isVppDeviceBasedLicensingEnabled": true,
"primaryGenreName": "Education",
"releaseDate": "2014-01-22T08:00:00Z",
"formattedPrice": "Free",
"primaryGenreId": 6017,
"sellerName": "GotIt! Inc.",
"genreIds": ["6017", "6007"],
"currentVersionReleaseDate": "2017-10-10T20:11:30Z",
"averageUserRating": 4.5,
"userRatingCount": 5199
},
{
"artistViewUrl":
"https://itunes.apple.com/us/developer/uber-technologies-inc/id368677371?uo=4",
"artworkUrl60":
"http://is5.mzstatic.com/image/thumb/Purple128/v4/a9/cf/91/a9cf9184-9a32-39bf-981a-b3a6af822ce1/source/60x60bb.jpg",
"artworkUrl100":
"http://is5.mzstatic.com/image/thumb/Purple128/v4/a9/cf/91/a9cf9184-9a32-39bf-981a-b3a6af822ce1/source/100x100bb.jpg",
"appletvScreenshotUrls": [],
"artworkUrl512":
"http://is5.mzstatic.com/image/thumb/Purple128/v4/a9/cf/91/a9cf9184-9a32-39bf-981a-b3a6af822ce1/source/512x512bb.jpg",
"ipadScreenshotUrls": [
"http://is4.mzstatic.com/image/thumb/Purple118/v4/8c/f1/43/8cf1435d-c931-b6a5-d650-9f757b2d2fb5/source/576x768bb.jpg",
"http://is3.mzstatic.com/image/thumb/Purple118/v4/ac/43/f2/ac43f228-65bf-b39c-bf07-b8a3d5ed3766/source/576x768bb.jpg",
"http://is1.mzstatic.com/image/thumb/Purple128/v4/a3/2c/65/a32c650a-8256-9c2a-9c8e-37e460b4629b/source/576x768bb.jpg",
"http://is5.mzstatic.com/image/thumb/Purple118/v4/c4/3f/44/c43f44fc-ece4-e9a0-d69c-8704b7ffd335/source/576x768bb.jpg",
"http://is2.mzstatic.com/image/thumb/Purple118/v4/de/63/04/de6304cf-59ad-183d-d09e-5a04551d7393/source/576x768bb.jpg"
],
"isGameCenterEnabled": false,
"kind": "software",
"features": ["iosUniversal"],
"supportedDevices": [
"iPad2Wifi-iPad2Wifi",
"iPad23G-iPad23G",
"iPhone4S-iPhone4S",
"iPadThirdGen-iPadThirdGen",
"iPadThirdGen4G-iPadThirdGen4G",
"iPhone5-iPhone5",
"iPodTouchFifthGen-iPodTouchFifthGen",
"iPadFourthGen-iPadFourthGen",
"iPadFourthGen4G-iPadFourthGen4G",
"iPadMini-iPadMini",
"iPadMini4G-iPadMini4G",
"iPhone5c-iPhone5c",
"iPhone5s-iPhone5s",
"iPadAir-iPadAir",
"iPadAirCellular-iPadAirCellular",
"iPadMiniRetina-iPadMiniRetina",
"iPadMiniRetinaCellular-iPadMiniRetinaCellular",
"iPhone6-iPhone6",
"iPhone6Plus-iPhone6Plus",
"iPadAir2-iPadAir2",
"iPadAir2Cellular-iPadAir2Cellular",
"iPadMini3-iPadMini3",
"iPadMini3Cellular-iPadMini3Cellular",
"iPodTouchSixthGen-iPodTouchSixthGen",
"iPhone6s-iPhone6s",
"iPhone6sPlus-iPhone6sPlus",
"iPadMini4-iPadMini4",
"iPadMini4Cellular-iPadMini4Cellular",
"iPadPro-iPadPro",
"iPadProCellular-iPadProCellular",
"iPadPro97-iPadPro97",
"iPadPro97Cellular-iPadPro97Cellular",
"iPhoneSE-iPhoneSE",
"iPhone7-iPhone7",
"iPhone7Plus-iPhone7Plus",
"iPad611-iPad611",
"iPad612-iPad612",
"iPad71-iPad71",
"iPad72-iPad72",
"iPad73-iPad73",
"iPad74-iPad74",
"iPhone8-iPhone8",
"iPhone8Plus-iPhone8Plus",
"iPhoneX-iPhoneX"
],
"screenshotUrls": [
"http://is2.mzstatic.com/image/thumb/Purple118/v4/51/92/fd/5192fd48-6806-3d36-2365-b36ba421ac42/source/392x696bb.jpg",
"http://is5.mzstatic.com/image/thumb/Purple128/v4/f5/06/da/f506da7a-0447-2f82-ef11-2a4b84b769e0/source/392x696bb.jpg",
"http://is2.mzstatic.com/image/thumb/Purple128/v4/20/92/21/2092214f-24f4-0682-e404-c4c56b770c10/source/392x696bb.jpg",
"http://is3.mzstatic.com/image/thumb/Purple118/v4/f8/ab/f6/f8abf689-94ff-2aca-959d-7be9758933a9/source/392x696bb.jpg",
"http://is4.mzstatic.com/image/thumb/Purple128/v4/59/0c/29/590c2922-dc88-5ff1-4c9a-35a98c8ab84d/source/392x696bb.jpg"
],
"advisories": [],
"trackCensoredName": "UberEATS: Food Delivery",
"trackViewUrl":
"https://itunes.apple.com/us/app/ubereats-food-delivery/id1058959277?mt=8&uo=4",
"contentAdvisoryRating": "4+",
"averageUserRatingForCurrentVersion": 2.5,
"sellerUrl": "http://www.ubereats.com/",
"userRatingCountForCurrentVersion": 53,
"trackContentRating": "4+",
"languageCodesISO2A": [
"AR",
"AZ",
"BG",
"HR",
"CS",
"DA",
"NL",
"EN",
"ET",
"FI",
"FR",
"DE",
"EL",
"HE",
"HU",
"ID",
"IT",
"JA",
"KO",
"LV",
"LT",
"MS",
"NB",
"PL",
"PT",
"RO",
"RU",
"ZH",
"SK",
"SL",
"ES",
"SV",
"TH",
"ZH",
"TR",
"VI"
],
"fileSizeBytes": "151483392",
"releaseNotes":
"We're always updating the app to give you the best possible experience. Check back next week to see the latest features and fixes.Love the app? Rate us! Your feedback makes UberEATS better, so you stay full and happy. Have a question? Tap Help in the UberEATS app or visit help.uber.com.",
"minimumOsVersion": "9.0",
"currency": "USD",
"wrapperType": "software",
"version": "1.105.10001",
"description":
"Get the food you want, from the restaurants you love, delivered at Uber speed.\n\nFood you want: We’re working with over a hundred restaurants in your city to put great local food all in one place. If you’re craving it, you can find it on UberEATS.\n\nSpeed you need: It’s Uber fast from app tap to table. Through the Uber network, you can get anything from our roster of local restaurants, within minutes.\n\nService you love: When you’re ready to place your order, you’ll see a total that includes the food and delivery price. There’s no need to tip. Pay with your Uber account and watch your order come right to you through the app. \n\nUberEATS is currently available in Auckland, Bangkok, Bogota, Brussels, Dubai, Hong Kong, Sao Paulo, Singapore, Stockholm, Taipei, Tokyo, Madrid, Milan, Moscow, Mumbai, New Delhi, Vienna, Warsaw, and multiple cities in the US, Australia, Canada, England, France, Mexico, the Netherlands and South Africa.",
"artistId": 368677371,
"artistName": "Uber Technologies, Inc.",
"genres": ["Food & Drink", "Lifestyle"],
"price": 0.0,
"bundleId": "com.ubercab.UberEats",
"trackId": 1058959277,
"trackName": "UberEATS: Food Delivery",
"isVppDeviceBasedLicensingEnabled": true,
"primaryGenreName": "Food & Drink",
"releaseDate": "2016-03-01T07:53:50Z",
"formattedPrice": "Free",
"primaryGenreId": 6023,
"sellerName": "Uber Technologies, Inc.",
"genreIds": ["6023", "6012"],
"currentVersionReleaseDate": "2017-10-09T20:17:50Z",
"averageUserRating": 4.0,
"userRatingCount": 27245
},
{
"artistViewUrl":
"https://itunes.apple.com/us/developer/photomath-inc/id901413062?uo=4",
"artworkUrl60":
"http://is1.mzstatic.com/image/thumb/Purple128/v4/47/0d/37/470d3734-caa1-6e99-ffa2-1d602d070db5/source/60x60bb.jpg",
"artworkUrl100":
"http://is1.mzstatic.com/image/thumb/Purple128/v4/47/0d/37/470d3734-caa1-6e99-ffa2-1d602d070db5/source/100x100bb.jpg",
"appletvScreenshotUrls": [],
"artworkUrl512":
"http://is1.mzstatic.com/image/thumb/Purple128/v4/47/0d/37/470d3734-caa1-6e99-ffa2-1d602d070db5/source/512x512bb.jpg",
"ipadScreenshotUrls": [
"http://is3.mzstatic.com/image/thumb/Purple128/v4/18/d6/6d/18d66dbe-e747-0f55-2ec0-b3321d797ef1/source/576x768bb.jpg",
"http://is2.mzstatic.com/image/thumb/Purple128/v4/c2/fc/91/c2fc91cc-51ae-c240-e71e-d292e7766ffe/source/576x768bb.jpg",
"http://is5.mzstatic.com/image/thumb/Purple118/v4/01/f6/7c/01f67c9f-fea2-af41-d777-5aae048954d5/source/576x768bb.jpg",
"http://is5.mzstatic.com/image/thumb/Purple128/v4/9f/71/af/9f71afd8-b20e-0422-f780-cca1394dfb17/source/576x768bb.jpg"
],
"isGameCenterEnabled": false,
"kind": "software",
"features": ["iosUniversal"],
"supportedDevices": [
"iPad2Wifi-iPad2Wifi",
"iPad23G-iPad23G",
"iPhone4S-iPhone4S",
"iPadThirdGen-iPadThirdGen",
"iPadThirdGen4G-iPadThirdGen4G",
"iPhone5-iPhone5",
"iPodTouchFifthGen-iPodTouchFifthGen",
"iPadFourthGen-iPadFourthGen",