-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathEVENTS.txt
2800 lines (2800 loc) · 103 KB
/
EVENTS.txt
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
[
{
"title": "Ticketmaster-Buy, Sell Tickets to Concerts, Sports",
"appId": "com.ticketmaster.mobile.android.na",
"url": "https://play.google.com/store/apps/details?id=com.ticketmaster.mobile.android.na",
"icon": "https://play-lh.googleusercontent.com/KmWVboPY-BCCfiflJ-AYCPGBv86QLMsXsSpvQksC0DVR8ENV0lh-lwHnXrekpHwbQA",
"developer": "Ticketmaster L.L.C.",
"developerId": "5712692731004758815",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Buy and sell concert, sports, broadway, theater, NFL, MLB & last minute tickets.",
"scoreText": "3.6",
"score": 3.554967
},
{
"title": "Gametime - Last Minute Tickets",
"appId": "com.gametime.gametime",
"url": "https://play.google.com/store/apps/details?id=com.gametime.gametime",
"icon": "https://play-lh.googleusercontent.com/YnZp7Yx4XGw7J4ipuFoL_Yn-hRRBk50ssOlk5hUfQKgPouMEIxcQOdykxyqoNrkS4w",
"developer": "Gametime",
"developerId": "7945303043090193581",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Find Live Event Ticket Deals to Sports, Concerts, Festivals, & Comedy For Less!",
"scoreText": "4.7",
"score": 4.6640363
},
{
"title": "SeatGeek – Tickets to Sports, Concerts, Broadway",
"appId": "com.seatgeek.android",
"url": "https://play.google.com/store/apps/details?id=com.seatgeek.android",
"icon": "https://play-lh.googleusercontent.com/rDMsfzq4RwA6Kf4OZIMnoC9338Bvm4kO9FjMzCYPYbM-mz6MdOWmOJGG2KGwBMmeTJw",
"developer": "SeatGeek",
"developerId": "SeatGeek",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Buy and sell tickets to sports, concerts, theater, festivals, and comedy events",
"scoreText": "3.3",
"score": 3.3149977
},
{
"title": "StubHub - Live Event Tickets",
"appId": "com.stubhub",
"url": "https://play.google.com/store/apps/details?id=com.stubhub",
"icon": "https://play-lh.googleusercontent.com/c2pLeG3oL4NPaag2kMqJul2Y4CMm9AltcuL7pEK-YSIiUfj2KrnH2hmUreYjXvw9WWco",
"developer": "StubHub-Mobile",
"developerId": "StubHub-Mobile",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Buy tickets for any concert, like Elton John's farewell tour, at the best price!",
"scoreText": "4.0",
"score": 4.0454
},
{
"title": "Invitation maker & Card design",
"appId": "com.greetingsisland.sam",
"url": "https://play.google.com/store/apps/details?id=com.greetingsisland.sam",
"icon": "https://play-lh.googleusercontent.com/6-bhosV13nx7pH8V1H8Yo4Xlixiq0yq_qOkk1fCGgbQkEo7YA85qeiyCmM0Ufmmxaas",
"developer": "Greetings Island",
"developerId": "8445965806113207721",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Birthday card maker, virtual invitations, save the dates evite, greeting cards",
"scoreText": "4.7",
"score": 4.742144
},
{
"title": "Vivid Seats | Event Tickets",
"appId": "com.vividseats.android",
"url": "https://play.google.com/store/apps/details?id=com.vividseats.android",
"icon": "https://play-lh.googleusercontent.com/kDsnu_LHfNoy8238J6B8ic9RU8pYTqI_0eu2wmuEg4KC4U_iM8Sx3nnNF2ZLemliooI",
"developer": "Vivid Seats LLC",
"developerId": "Vivid+Seats+LLC",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Buy and Sell Tickets for Concerts, Sports, and Theater.",
"scoreText": "2.5",
"score": 2.4985268
},
{
"title": "TickPick - Live Event Tickets",
"appId": "com.tickpickllc.ceobrien.tickpick",
"url": "https://play.google.com/store/apps/details?id=com.tickpickllc.ceobrien.tickpick",
"icon": "https://play-lh.googleusercontent.com/zinq7l3nhQ_IovwEiAcfT7vfjJHvpQlaYbYFhm-oKsoxO5FaFEKEJ4uUqc6Xbk-bMRaP",
"developer": "TickPick LLC",
"developerId": "TickPick+LLC",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Save money on concert, sport, and theater tickets, and discover upcoming events.",
"scoreText": "4.4",
"score": 4.3542438
},
{
"title": "Magic: The Gathering Companion",
"appId": "com.wizards.winter_orb",
"url": "https://play.google.com/store/apps/details?id=com.wizards.winter_orb",
"icon": "https://play-lh.googleusercontent.com/qN-ZMFT0d8lI9JBSU4vmT6h-XCGug-T_J3tX3cexowSOnPqT294Lb53qBd7hLodMYQ",
"developer": "Wizards of the Coast LLC",
"developerId": "Wizards+of+the+Coast+LLC",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Introducing the official Magic: The Gathering app for mobile.",
"scoreText": "4.1",
"score": 4.1386137
},
{
"title": "Maps for Minecraft PE skyblock",
"appId": "com.andiqwer.skyblock_maps",
"url": "https://play.google.com/store/apps/details?id=com.andiqwer.skyblock_maps",
"icon": "https://play-lh.googleusercontent.com/_KVgzJrTgMAgtOVMWUtOTbJjFv2H8BVAzIWX73mTkZglztux4F0yHO0OH_L7auFf3A",
"developer": "AndiQwer",
"developerId": "AndiQwer",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Maps for mcpe. Easy installation.",
"scoreText": "4.1",
"score": 4.0666666
},
{
"title": "HomeTown Fan",
"appId": "com.hometownticketing.tix.androidapp",
"url": "https://play.google.com/store/apps/details?id=com.hometownticketing.tix.androidapp",
"icon": "https://play-lh.googleusercontent.com/jxrGerSAv0QlezKsm_Dpv-skkFm4cw5h9Clx30nqpitOJ898S95TVgokKKpdhmZsr1pv",
"developer": "HomeTown Ticketing, Inc.",
"developerId": "HomeTown+Ticketing,+Inc.",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Fast Scans. Happy Fans. For Every HomeTown!",
"scoreText": "3.8",
"score": 3.8265307
},
{
"title": "Main Event",
"appId": "com.mainevent.app",
"url": "https://play.google.com/store/apps/details?id=com.mainevent.app",
"icon": "https://play-lh.googleusercontent.com/N6yBgv77P8b3T2gZu4ARO8kBjZ0nPMt1pKKip1ox4b-jw8lvqfC-pLcoBWVJwSsfnQ",
"developer": "Main Event Entertainment",
"developerId": "Main+Event+Entertainment",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Fun feels like magic with card management, app-only offers, and easy reservation",
"scoreText": "3.3",
"score": 3.26
},
{
"title": "BackPack Mod for Minecraft PE - MCPE",
"appId": "minecraft.mk.mods.h",
"url": "https://play.google.com/store/apps/details?id=minecraft.mk.mods.h",
"icon": "https://play-lh.googleusercontent.com/efoxiEY_DER4yONP7oN-n7C-g_OqbcIAlWjNF8cIz2nWToWJB-Gmkc2WfBypM9JaOA8",
"developer": "Master Mod Minecraft",
"developerId": "Master+Mod+Minecraft",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "They are a mobile chest which you can wear on your back while traveling.",
"scoreText": "4.1",
"score": 4.1485147
},
{
"title": "Superheroes Mod for Minecraft PE - MCPE",
"appId": "minecraft.mk.mods.j",
"url": "https://play.google.com/store/apps/details?id=minecraft.mk.mods.j",
"icon": "https://play-lh.googleusercontent.com/bK3U7770MclHcZiUAw_DKwaDalxi_5_nYBoxFkbzMq_Cm4sgz9hpiPH_4Kkx3LV9CWc",
"developer": "Master Mod Minecraft",
"developerId": "Master+Mod+Minecraft",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "This mod is based off the Superheroes and Superpowers.",
"scoreText": "4.4",
"score": 4.382353
},
{
"title": "Easy Quran Mp3 Audio Offline Complete with Qibla",
"appId": "com.muslimappassistant.Islampro.qiblafinder.quranprayerdua",
"url": "https://play.google.com/store/apps/details?id=com.muslimappassistant.Islampro.qiblafinder.quranprayerdua",
"icon": "https://play-lh.googleusercontent.com/sSJjV6jA5JlRegsRAzw8JV6_hqfIcoTfyb8RAffLvXYz9lhD1GY17y35wh7gYtDLnw",
"developer": "Muslim Worldapp",
"developerId": "Muslim+Worldapp",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Download Full Quran mp3 Offline, Qibla Compass, Salah Timing, 99 Names of Allah",
"scoreText": "4.5",
"score": 4.529412
},
{
"title": "Expo 2020 Dubai",
"appId": "com.expo2020dubai.android",
"url": "https://play.google.com/store/apps/details?id=com.expo2020dubai.android",
"icon": "https://play-lh.googleusercontent.com/uCx4DtIMmlPsMbXJwUZ0mZkNcp7CviB0P7RrmaquhOKWZry9-LlWcmiLQ4SkCP2B-pI",
"developer": "Expo 2020 Dubai UAE",
"developerId": "Expo+2020+Dubai+UAE",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Get the most out of your visit",
"scoreText": "3.1",
"score": 3.1111112
},
{
"title": "PC Games Radar for Epic Games, Steam, Origin, GoG",
"appId": "de.apuri.free.games",
"url": "https://play.google.com/store/apps/details?id=de.apuri.free.games",
"icon": "https://play-lh.googleusercontent.com/xgls-YeP2tpfu6YHy9lD8jw5iDELjcTMgv_5-jgWVZGhj2th9HffQRmRX0gxYsPEPBs",
"developer": "Yuber Apps",
"developerId": "5757080391850982585",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Free game offers at Steam, Epic Games, GoG, Humble Bundle, Origin etc.",
"scoreText": "3.8",
"score": 3.7623763
},
{
"title": "Police Lights",
"appId": "com.chic.policelights",
"url": "https://play.google.com/store/apps/details?id=com.chic.policelights",
"icon": "https://play-lh.googleusercontent.com/mWGarO-7sDSs0vvW6lmrbDx6hR4PqUKCjDQgd4yeLF1uJbDEpuZ5QjBWSKAWrC6hx7iN",
"developer": "Shiny Lights",
"developerId": "7562197840432606874",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Police Lights is a beautiful application for disco with lights, color and flash.",
"scoreText": "4.7",
"score": 4.7
},
{
"title": "TodayTix – Theatre Tickets",
"appId": "com.todaytix.TodayTix",
"url": "https://play.google.com/store/apps/details?id=com.todaytix.TodayTix",
"icon": "https://play-lh.googleusercontent.com/nT3Wl7G83hRj2FCuf2sMPGzhSF0CiCATH7IRDN255VCC5avCbKi6mYGDEoVKkJu0zsg",
"developer": "TodayTix",
"developerId": "TodayTix",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "TodayTix is the easiest way to get tickets to the best shows in your city.",
"scoreText": "4.8",
"score": 4.7527933
},
{
"title": "Party Invitation Cards Maker",
"appId": "com.invitationmaker.cardmaker.wedding.greetingscard.partyinvitation",
"url": "https://play.google.com/store/apps/details?id=com.invitationmaker.cardmaker.wedding.greetingscard.partyinvitation",
"icon": "https://play-lh.googleusercontent.com/-XtIUcOolfHMc04oqTbffq628buUzTwlWmrA0otZaXmoihhA8apELS8PWKrRh2-2Ug",
"developer": "Detente Apps Studio",
"developerId": "Detente+Apps+Studio",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Invitation maker and card maker are available for rsvp and invitations.",
"scoreText": "3.9",
"score": 3.8888888
},
{
"title": "Freebie PC Game on Steam, Epic",
"appId": "com.freegamescodes.freegamescodes",
"url": "https://play.google.com/store/apps/details?id=com.freegamescodes.freegamescodes",
"icon": "https://play-lh.googleusercontent.com/lYsYJRjZQy5xILEPZP1vVN81K9v82rAEgRJV-eRBLoY42-DkkOBNtUTVnZpAQ1vcVw",
"developer": "İzzet Emre Demir",
"developerId": "6482544890069772139",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "We share freebie pc games from sites such as Epic Games Store, Steam.",
"scoreText": "3.3",
"score": 3.2638888
},
{
"title": "Great Northwest Glass Quest",
"appId": "com.appsheet.whitelabel.guid_f19e9dcf_796b_4c81_8f66_525aa74cc3a3",
"url": "https://play.google.com/store/apps/details?id=com.appsheet.whitelabel.guid_f19e9dcf_796b_4c81_8f66_525aa74cc3a3",
"icon": "https://play-lh.googleusercontent.com/Q-iXEpR80WtU9-nQ6MN0Ju4z40WWzNcikhoLI35Z1oFhGCXzoLpx-F-pDwXmEUmiLQ",
"developer": "Puget Tech",
"developerId": "7756588051800643422",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "A mobile application for The Greatest Treasure Hunt in the Pacific Northwest",
"scoreText": "4.4",
"score": 4.428571
},
{
"title": "Invitation maker 2021 Birthday & Wedding card Free",
"appId": "splendid.invitation.maker",
"url": "https://play.google.com/store/apps/details?id=splendid.invitation.maker",
"icon": "https://play-lh.googleusercontent.com/7AWP7IuVrCQdwJLgtcnSaEWa7-w3ETPE92v0cyJhrjHLkeTGuTTkM81RMOqKpk4YJqQ",
"developer": "Splendid App Maker",
"developerId": "5819342261711162750",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Free Birthday Invitation maker 2021 and Wedding invitation greeting card design",
"scoreText": "4.7",
"score": 4.69
},
{
"title": "Sched",
"appId": "com.sched",
"url": "https://play.google.com/store/apps/details?id=com.sched",
"icon": "https://play-lh.googleusercontent.com/V7CC3RmGHW3l2rOvHYvf72G2WrAM0Q526BETk5J_I69WTctnWvetmwW2LcP91q9fdNw",
"developer": "Sched LLC",
"developerId": "Sched+LLC",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "The official app for Sched events! View your event schedule here.",
"scoreText": "4.0",
"score": 4.01
},
{
"title": "Sky Rider Control",
"appId": "app.panchip_weinikang.planecontroller",
"url": "https://play.google.com/store/apps/details?id=app.panchip_weinikang.planecontroller",
"icon": "https://play-lh.googleusercontent.com/G1ZbPwSCz6E2Z7w-Eno7DBw214XoZyERwlR_NdNmGC_O-il_vIUu_nxnGbNOOgqgrGU",
"developer": "DPI Inc.",
"developerId": "DPI+Inc.",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "This App can control drones by WIFI camera",
"scoreText": "2.9",
"score": 2.8514853
},
{
"title": "Music Ringtones for Tik Tok",
"appId": "com.topRingtones.TikTok",
"url": "https://play.google.com/store/apps/details?id=com.topRingtones.TikTok",
"icon": "https://play-lh.googleusercontent.com/6vJM0mRjmN9OZSU45rgoRb4PP9wvWiqXAJof-qJyHROnHSu3wV2WUMTa6N1JMYUorNE1",
"developer": "abesato",
"developerId": "abesato",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "The best music from Tik Tok as your phone ringtone",
"scoreText": "3.4",
"score": 3.4158416
},
{
"title": "Edmtrain Concerts",
"appId": "com.edmtrain.edmtracks",
"url": "https://play.google.com/store/apps/details?id=com.edmtrain.edmtracks",
"icon": "https://play-lh.googleusercontent.com/8UHtM-5Gku6FMVkbm8unlU-dADqrMeG69W-xL-5O9oHpvSudUW4ngKQtBfy-aS7MMbXb",
"developer": "EDM Train LLC",
"developerId": "EDM+Train+LLC",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "EDM concerts near you! See your favorite artists live, and discover new music.",
"scoreText": "4.9",
"score": 4.9085364
},
{
"title": "Survival maps for Minecraft PE",
"appId": "com.company.toster",
"url": "https://play.google.com/store/apps/details?id=com.company.toster",
"icon": "https://play-lh.googleusercontent.com/-2oYD_xTEr_fB4ILvMIfFJITb6bmGz15ioDebaPzCiQn133ncOBPbW8T4DeR9FgrF5Y",
"developer": "AndiQwer",
"developerId": "AndiQwer",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Maps for mcpe, survival and skyblock. One click installation",
"scoreText": "4.3",
"score": 4.35
},
{
"title": "Streamyard Streaming user tips",
"appId": "com.yandi.sert",
"url": "https://play.google.com/store/apps/details?id=com.yandi.sert",
"icon": "https://play-lh.googleusercontent.com/Aet7Vv7RVSL0fe22XMTrVbe2QAYRT_VZqgp_nlLzU1jYk0_Woq_s_YlzIRlqwhRlBz1s",
"developer": "Markus Dev",
"developerId": "Markus+Dev",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "you will find here information about streamyard",
"scoreText": "0.0",
"score": 0
},
{
"title": "Concert Archives",
"appId": "org.concertarchives",
"url": "https://play.google.com/store/apps/details?id=org.concertarchives",
"icon": "https://play-lh.googleusercontent.com/rweaMf4sKeZ8O54pCA9rhN1zyzuy5zcyV_Nn-Iq__B_QC-vB5uNRhZ8p8gH_TWkGP5A",
"developer": "ConcertArchives",
"developerId": "5350267309250997431",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "The social network & diary for concert lovers",
"scoreText": "4.6",
"score": 4.5625
},
{
"title": "Invitation Maker & Card Design",
"appId": "com.kaboom.apps.free.invitation.maker",
"url": "https://play.google.com/store/apps/details?id=com.kaboom.apps.free.invitation.maker",
"icon": "https://play-lh.googleusercontent.com/_QstCmcBPyjRq2nR9G7j7UweezXDyezQf2odJYn4oBSqVyD60tWzXHR9KNDyx60uhPQJ",
"developer": "KaboomApps",
"developerId": "8276009643201482025",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Create invitation cards for birthdays, weddings, Christmas and more.",
"scoreText": "4.9",
"score": 4.9242425
},
{
"title": "JobleticsPro",
"appId": "com.jobleticspro",
"url": "https://play.google.com/store/apps/details?id=com.jobleticspro",
"icon": "https://play-lh.googleusercontent.com/O--q6uw4quKu5ZCIFaVUrVak_bP3RuSBGBWfpShvRL_qChindKAzz4Xcv_Bt5Ro6Bm4",
"developer": "Jobletics Pro Inc.",
"developerId": "Jobletics+Pro+Inc.",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "On-demand Job solution",
"scoreText": "3.1",
"score": 3.1333334
},
{
"title": "Hub App: Hangout Invite & RSVP",
"appId": "com.thehub",
"url": "https://play.google.com/store/apps/details?id=com.thehub",
"icon": "https://play-lh.googleusercontent.com/RSvj_naoiy2Q77EPN9txlIl4l9scJgAOVIvgRsfJ0jjxugoR_kcE_F7EEHJ-HT6FEtc",
"developer": "The Hub App AG",
"developerId": "The+Hub+App+AG",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Effortlessly Send & Receive Invite, Chat, Vote, Reply, Share Gathering, Birthday",
"scoreText": "4.3",
"score": 4.285714
},
{
"title": "Experience PlayStation",
"appId": "com.sony.psexp2016",
"url": "https://play.google.com/store/apps/details?id=com.sony.psexp2016",
"icon": "https://play-lh.googleusercontent.com/EnfvkzvGOvYeU1jYJnV1m0I6gbMSaIj8cuR7NPZAC6gEcRobXJK2d2WhV9WV0iRbGx-F",
"developer": "PlayStation Mobile Inc.",
"developerId": "5810481673801929430",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Make the most out of official PlayStation events.",
"scoreText": "3.3",
"score": 3.26
},
{
"title": "Wedding Planner: Checklist, Budget, Countdown",
"appId": "app.mywed.android",
"url": "https://play.google.com/store/apps/details?id=app.mywed.android",
"icon": "https://play-lh.googleusercontent.com/qEcKOH57WFaGEClFm7jIDCXjf7Qa0katWoOASSPZvqooW_sZ8J1m7smJ0BPfZ26gG2Y",
"developer": "Wedding Planner App",
"developerId": "Wedding+Planner+App",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Manage guest list 🥂 Keep track of tasks 💕 Control expenses 💍 Invite partner",
"scoreText": "4.4",
"score": 4.4
},
{
"title": "Discotech: VIP Bottle Service, Guest List, Tickets",
"appId": "me.discotech",
"url": "https://play.google.com/store/apps/details?id=me.discotech",
"icon": "https://play-lh.googleusercontent.com/0S3l7CCsMGo2mYgQc90CoeSVBQ0m1H5YtSYf8IVKvD-fHR_ysMdrdBEe9nYOefQErw",
"developer": "Discotech, Inc.",
"developerId": "7726566014265771717",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "The #1 Nightlife App - Bottle service, guest lists, clubs, events, tickets!",
"scoreText": "4.9",
"score": 4.925
},
{
"title": "Reward Earning By Simple Tasks",
"appId": "com.iutcash.bill",
"url": "https://play.google.com/store/apps/details?id=com.iutcash.bill",
"icon": "https://play-lh.googleusercontent.com/nx9_Q0YzPo-b3UH6M4q_U_Vi5ifeGPg7vcl_jQIjLf7I_-wUrOYact4OXvUi8j3SMg",
"developer": "yeolandonqvxji",
"developerId": "yeolandonqvxji",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Reward cash from simple tasks",
"scoreText": "4.0",
"score": 4
},
{
"title": "game.tv",
"appId": "tv.game",
"url": "https://play.google.com/store/apps/details?id=tv.game",
"icon": "https://play-lh.googleusercontent.com/Rg831gDufBgmZrYrt4fVhMl7AEAIKvY-BlQr3AYHxGoGJ7ZB96hCVMnEHD_mTComKA",
"developer": "game-tv",
"developerId": "game-tv",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "All about creators, gamers, esports & more. Turn fandom into real money.",
"scoreText": "4.0",
"score": 4
},
{
"title": "Day Counter. Count Up & Down",
"appId": "com.bitsens.daytracker",
"url": "https://play.google.com/store/apps/details?id=com.bitsens.daytracker",
"icon": "https://play-lh.googleusercontent.com/AXC19r34gXoT1dPNw1OY-bQJPYT2RPdvmDFQBiA82Li0jbxBv5ZocfgmNq2Q5Ygw0w",
"developer": "BITSENS",
"developerId": "BITSENS",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Nice productivity timer: unlimited birthdays, habits countdowns and count-ups",
"scoreText": "4.0",
"score": 4.025641
},
{
"title": "Magic Money - a better way to pay and play",
"appId": "com.app.magicmoneyguest",
"url": "https://play.google.com/store/apps/details?id=com.app.magicmoneyguest",
"icon": "https://play-lh.googleusercontent.com/3lUqTIt2idAF71BrsFhKJeXxZuJDLBwSlRdZS3ge92O2HotI99dc48SJO9PNaqohoMg",
"developer": "MagicMoney LLC",
"developerId": "MagicMoney+LLC",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Magic Money is a better way to pay and play at events, fairs and water parks.",
"scoreText": "2.6",
"score": 2.627907
},
{
"title": "WWE Royal Rumble",
"appId": "com.yinzcam.venues.wwe",
"url": "https://play.google.com/store/apps/details?id=com.yinzcam.venues.wwe",
"icon": "https://play-lh.googleusercontent.com/LR7p95qOTKrx4htMB1cJJ1bDhpcWVfIGt9sDKs-z6sClFA2GJ-kJAywTenBSEca9qjY",
"developer": "WWE, Inc.",
"developerId": "WWE,+Inc.",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "This app is your official resource for Royal Rumble in St. Louis, MO",
"scoreText": "3.8",
"score": 3.8082192
},
{
"title": "Goldstar - Buy Tickets",
"appId": "com.goldstar",
"url": "https://play.google.com/store/apps/details?id=com.goldstar",
"icon": "https://play-lh.googleusercontent.com/9M3--k-1qT8cymChrOvSf_hvGswLTT0rgVVkXr17dHhuZMgWT-IofjQ57rAmcp_q-vQ",
"developer": "Goldstar Events, LLC",
"developerId": "Goldstar+Events,+LLC",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Broadway, Theater, Live Music. When you want to go out, start here first.",
"scoreText": "4.5",
"score": 4.4696484
},
{
"title": "Attendee Mobile",
"appId": "com.swoogo.mobile",
"url": "https://play.google.com/store/apps/details?id=com.swoogo.mobile",
"icon": "https://play-lh.googleusercontent.com/pc0udpcjs_juQOtohYYLC8-gkt3t9FKrPSBuT6WNZ6Drxrfcm1or0Wqo38-sXioc90U",
"developer": "Swoogo",
"developerId": "Swoogo",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Attendee Mobile app",
"scoreText": "2.8",
"score": 2.8
},
{
"title": "2022 Calendar",
"appId": "io.kodular.dhaneswarojha434.TwentyTwentycalnder",
"url": "https://play.google.com/store/apps/details?id=io.kodular.dhaneswarojha434.TwentyTwentycalnder",
"icon": "https://play-lh.googleusercontent.com/ybVwefdP7FrhhC895NV3b-IZftC8xhIxjd_Hh2swTPybw3S-NVmcGN1F9BY5ezrGkag",
"developer": "Communication Support",
"developerId": "5670215049447325299",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "The calander app in this 2022 year see all dates.",
"scoreText": "3.7",
"score": 3.6666667
},
{
"title": "Bizzabo",
"appId": "com.bizzabo.client",
"url": "https://play.google.com/store/apps/details?id=com.bizzabo.client",
"icon": "https://play-lh.googleusercontent.com/SEQJLdsMQLnrpDzm5KJSdRocLvSfL_eH663eVga1DIG_7G25hslSfxQvHX1yiDtn-A",
"developer": "Bizzabo Ltd.",
"developerId": "Bizzabo+Ltd.",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Maximize your event journey",
"scoreText": "2.5",
"score": 2.55
},
{
"title": "All Events in City - Discover Events On The GO",
"appId": "com.amitech.allevents",
"url": "https://play.google.com/store/apps/details?id=com.amitech.allevents",
"icon": "https://play-lh.googleusercontent.com/UUrfeR7QRqx1A1q7sikhllVO8M3EFs3UNx7ngcUfzt0HAIZMfA4R8TwRo8vbG_tF64Q",
"developer": "Amitech Business Solutions",
"developerId": "Amitech+Business+Solutions",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Best event guide for your city. Find things to do, activities & events near you.",
"scoreText": "4.0",
"score": 4.039604
},
{
"title": "Hurry - Countdown to Birthday/Vacation (& Widgets)",
"appId": "com.samruston.hurry",
"url": "https://play.google.com/store/apps/details?id=com.samruston.hurry",
"icon": "https://play-lh.googleusercontent.com/5Hsgdk6KLXc-j9Vs6VWC_CwN0CCicEQG4cq6kLLphCZrwN6nIrLWvb7bQJQ7pu72kQ",
"developer": "Sam Ruston",
"developerId": "8635532423115474166",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Countdown the days until Christmas, birthdays, holidays, vacations or bills",
"scoreText": "4.6",
"score": 4.59
},
{
"title": "HomeTown Gate",
"appId": "com.hometownticketing.androidapp",
"url": "https://play.google.com/store/apps/details?id=com.hometownticketing.androidapp",
"icon": "https://play-lh.googleusercontent.com/av57K7e7MbT8f_UbKT6DhKCqnrKtDjOvLXYnpYt5UZezKWoeBBjSsk9KZI5ekxxtYLA",
"developer": "HomeTown Ticketing, Inc.",
"developerId": "HomeTown+Ticketing,+Inc.",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Go-to tool for selling and scanning of tickets from your HomeTown box office.",
"scoreText": "4.5",
"score": 4.535714
},
{
"title": "Orgill Spring Dealer Market",
"appId": "a2z.Mobile.Event6110",
"url": "https://play.google.com/store/apps/details?id=a2z.Mobile.Event6110",
"icon": "https://play-lh.googleusercontent.com/Um7sRnCPvUTkEr9xcTbrTEUf4SRDEEyBBX_lkLnp1ZeUag9EGhNGzNBplwrzotjDGg",
"developer": "a2z, Inc.",
"developerId": "a2z,+Inc.",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "The official Orgill 2022 Spring Dealer Market app",
"scoreText": "0.0",
"score": 0
},
{
"title": "Famous TikTok™ Ringtones app",
"appId": "com.tiktokringtone.tiktokmusicdownloader.musically",
"url": "https://play.google.com/store/apps/details?id=com.tiktokringtone.tiktokmusicdownloader.musically",
"icon": "https://play-lh.googleusercontent.com/hwrcIxHa3oX3MWvbmT3pE_pLNxaU4NoHy96f1OXY-xSEcyjH3UKszm8f-qtZcXqTEuw",
"developer": "Famous Ringtones For Android",
"developerId": "7361322738340961403",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Tik Tok Ringtones for android Phone: Tik tok ringtone app Music Songs Ringtones",
"scoreText": "3.8",
"score": 3.8163266
},
{
"title": "Game Promotion Alert - Notify",
"appId": "de.thegolem.freepcgames",
"url": "https://play.google.com/store/apps/details?id=de.thegolem.freepcgames",
"icon": "https://play-lh.googleusercontent.com/QhT2eokgf5uQVZvTGQEg4iTNCC1WhxwUccHPhNd3DR9zgLkFL9cuTfmAhqksilfxICk",
"developer": "TheGolem",
"developerId": "7353531618167861904",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Game Promotion Alert shows you all gratis games offers. Get epic games gratis!",
"scoreText": "3.5",
"score": 3.46
},
{
"title": "Event Tickets Center",
"appId": "com.xcr.android.eventticketscenter",
"url": "https://play.google.com/store/apps/details?id=com.xcr.android.eventticketscenter",
"icon": "https://play-lh.googleusercontent.com/vPtFkaUjl_JzO7EB_AeL61ylgUgwJaZbfcPHyIuumUCjmAczRkXwPq3Q-kyBdW0mYw",
"developer": "Event Tickets Center - ETC",
"developerId": "Event+Tickets+Center+-+ETC",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Get tickets for games, concerts, theater & Broadway shows - Event Tickets Center",
"scoreText": "3.7",
"score": 3.67
},
{
"title": "Bridebook - The Wedding Planning App",
"appId": "com.bridebook.mobileapp",
"url": "https://play.google.com/store/apps/details?id=com.bridebook.mobileapp",
"icon": "https://play-lh.googleusercontent.com/vIwkJRTO5D556HiWSkxiF86b-lOszcN3eLSGP6gtCmt6SkbmoRaYjyNTWANnBB_uSg",
"developer": "Bridebook",
"developerId": "Bridebook",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Everything you need to plan your wedding, all in one place.",
"scoreText": "4.3",
"score": 4.27
},
{
"title": "LIVE 2D",
"appId": "com.spone.live_two_d",
"url": "https://play.google.com/store/apps/details?id=com.spone.live_two_d",
"icon": "https://play-lh.googleusercontent.com/gaJfTBUD-9DOCeGm1L2Jlp-gYqx885ONzxWkLBkahXmplR9Qs-KM6gMNhq51FoR3Dok",
"developer": "Ko Nay",
"developerId": "Ko+Nay",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "This LIVE 2D app is one of the best app with light speed data server.",
"scoreText": "4.6",
"score": 4.5641026
},
{
"title": "My Church by ChurchSpring",
"appId": "com.mychurchspring",
"url": "https://play.google.com/store/apps/details?id=com.mychurchspring",
"icon": "https://play-lh.googleusercontent.com/mfeqcXBx7UFXpO-bYgoDFusJhPLKW3Cx7q66igI5l92COXnfIWutaNYjSHNM8Nf9gpmz",
"developer": "ChurchSpring",
"developerId": "ChurchSpring",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Gain access to your church’s latest events, sermons, updates, church directory!",
"scoreText": "0.0",
"score": 0
},
{
"title": "Multiple Account Dual Space- Whatscan for Whatsweb",
"appId": "com.dl.multiple.parallel.cloner.multiaccounts.space",
"url": "https://play.google.com/store/apps/details?id=com.dl.multiple.parallel.cloner.multiaccounts.space",
"icon": "https://play-lh.googleusercontent.com/_n9h8wjJvpkecER1tZjCe_m-J1ukbtET6ItFEp2RQT8UjOWsH-zOXDRzJeywuqIyNqc",
"developer": "Developer Logic",
"developerId": "5121933952560304125",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Welcome to best multiple account dual space clone app multiple FB account app"
},
{
"title": "2022 USA Games",
"appId": "org.usagames2022.gamesapp",
"url": "https://play.google.com/store/apps/details?id=org.usagames2022.gamesapp",
"icon": "https://play-lh.googleusercontent.com/tk-QxQyuqAWOjK848YrhuMFzveGxiEMq-0-8wI2fIZXBQV4pv5HIU8Xe85KVe1hn-w",
"developer": "Special Olympics 2022 USA Games",
"developerId": "Special+Olympics+2022+USA+Games",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Download the official app for the 2022 Special Olympics USA Games.",
"scoreText": "4.7",
"score": 4.6923075
},
{
"title": "Survival Maps",
"appId": "com.survival.maps.redstone",
"url": "https://play.google.com/store/apps/details?id=com.survival.maps.redstone",
"icon": "https://play-lh.googleusercontent.com/WEYmrMYwJoHivYuBBkFzcBi_afS9Xx2bNc2Ad8cRzyN43eyOLbnwSC6f_LWDIM14qSuc",
"developer": "Visnevscaia Oxana",
"developerId": "Visnevscaia+Oxana",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Download and install the NEW Survival Maps in few clicks",
"scoreText": "1.5",
"score": 1.51
},
{
"title": "TicketSmarter - Concerts, Sports & Theatre Tickets",
"appId": "com.ticketsmarter.TicketSmarter",
"url": "https://play.google.com/store/apps/details?id=com.ticketsmarter.TicketSmarter",
"icon": "https://play-lh.googleusercontent.com/qD77gORtV7MzNJmbHh5b9KnIrnci7kiFpi3pMPoH8DlDp_9_pWX_F0ya15T6aeiUck4",
"developer": "TicketSmarter",
"developerId": "TicketSmarter",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Experience the Power and Excitement of Live Events",
"scoreText": "3.6",
"score": 3.5510204
},
{
"title": "Event Planner - Guests, To-do, Budget Management",
"appId": "com.vlabs.eventplanner",
"url": "https://play.google.com/store/apps/details?id=com.vlabs.eventplanner",
"icon": "https://play-lh.googleusercontent.com/ixsgJMHsjCw2bBg60DivPtvTU1jP8Z8oj5wWibY5dANADlak2WBOCkFDrpAC9udSvq0H",
"developer": "Visionary Labs",
"developerId": "Visionary+Labs",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Plan and manage any event easily by managing tasks, guests, budgets and vendors",
"scoreText": "4.2",
"score": 4.1752577
},
{
"title": "RILA Conference",
"appId": "com.resultsdirect.eventsential.branded.rila",
"url": "https://play.google.com/store/apps/details?id=com.resultsdirect.eventsential.branded.rila",
"icon": "https://play-lh.googleusercontent.com/xSRNdTgMtAY8o9BvgM-IqRaMBKoxcONistQSXD4rqIZYVlBUKwW7d0q-JaebE-Z27g_x",
"developer": "Retail Industry Leaders Association (RILA)",
"developerId": "Retail+Industry+Leaders+Association+(RILA)",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "The official application for Retail Industry Leaders Association events",
"scoreText": "0.0",
"score": 0
},
{
"title": "TeleMapper 3",
"appId": "com.estream.telemapper3",
"url": "https://play.google.com/store/apps/details?id=com.estream.telemapper3",
"icon": "https://play-lh.googleusercontent.com/8hOt3nIWmnXE0D-fDm4lZ7ow19x1NbCn3LsGfiwwQNHbKLnpV35fhFX8ahFQ57nn18Q",
"developer": "Estream inc",
"developerId": "Estream+inc",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Telemapper is GPS based retail staffing solution",
"scoreText": "0.0",
"score": 0
},
{
"title": "Here Nor There",
"appId": "co.ellym.herenorthere",
"url": "https://play.google.com/store/apps/details?id=co.ellym.herenorthere",
"icon": "https://play-lh.googleusercontent.com/iugO-5vYqET5WUJQrBPRqMM7jtT5GlPPEe7wYUZIYk8X8C3ADgisggSh28fiegs16A",
"developer": "ellym.co",
"developerId": "ellym.co",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "An app for a place in Austin TX",
"scoreText": "4.7",
"score": 4.7272725
},
{
"title": "تقویم پارس Taghvim Pars",
"appId": "com.algorits.taghvimpars",
"url": "https://play.google.com/store/apps/details?id=com.algorits.taghvimpars",
"icon": "https://play-lh.googleusercontent.com/e8HqKlHlfvGPWHtJqDwjxwHS_5BNs_CD3ntwuxcImdg_rOHyTYg_9AJoi8Y9iPsM2g",
"developer": "Taghvim Pars support",
"developerId": "Taghvim+Pars+support",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Date and time + manage your events",
"scoreText": "4.8",
"score": 4.792079
},
{
"title": "XO Marriage",
"appId": "com.marriagetoday.xo",
"url": "https://play.google.com/store/apps/details?id=com.marriagetoday.xo",
"icon": "https://play-lh.googleusercontent.com/KJ2tofY2nW6IshwioPvivuuFDLzngBMm0F25DHuAKeWDNjJJQEda0atqyhQSZGQl4Q",
"developer": "MarriageToday",
"developerId": "MarriageToday",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Stay connected with everything happening during the live XO Marriage event.",
"scoreText": "4.4",
"score": 4.3846154
},
{
"title": "Hide and Seek maps for Minecraft",
"appId": "net.sorokinapps.hideandseek",
"url": "https://play.google.com/store/apps/details?id=net.sorokinapps.hideandseek",
"icon": "https://play-lh.googleusercontent.com/6B3cubal6YLrMe9ESnib_0fjU7hYZtXo66OE5W_pCE7kJij4lcNaYuBxUhr_n5fETw",
"developer": "Drabdor",
"developerId": "Drabdor",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Maps for minecraft. Hide and seek in minecraft. Choose camouflage skins and play",
"scoreText": "4.2",
"score": 4.185185
},
{
"title": "Stylish Invitation Card Maker",
"appId": "com.events.invitation.stylishcardmaker.free",
"url": "https://play.google.com/store/apps/details?id=com.events.invitation.stylishcardmaker.free",
"icon": "https://play-lh.googleusercontent.com/KnDBNnETg1zeShMRQCN4fCZOjgP-kj_irFQa2nz3LIH8tLWiZWalNP0jr6I3RnJe1BI",
"developer": "Game Axe",
"developerId": "Game+Axe",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Create invitation cards for holidays, Christmas, birthdays or any occasion",
"scoreText": "4.4",
"score": 4.4
},
{
"title": "SoFi Stadium",
"appId": "com.hollywoodparkca.experience",
"url": "https://play.google.com/store/apps/details?id=com.hollywoodparkca.experience",
"icon": "https://play-lh.googleusercontent.com/gStJ9l5DF8fpz7bESLuyJRd7R7ToOIJoe7ratrg5LLxW3O1UZeAcnq_GQAN0cSKG4cvv",
"developer": "SoFi Stadium and Hollywood Park",
"developerId": "SoFi+Stadium+and+Hollywood+Park",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Enhance your experience with mobile ticketing, stadium navigation and more!",
"scoreText": "3.5",
"score": 3.5
},
{
"title": "Bobcat® Dealer Meeting",
"appId": "com.aventri.bobcatapp7921",
"url": "https://play.google.com/store/apps/details?id=com.aventri.bobcatapp7921",
"icon": "https://play-lh.googleusercontent.com/g7r_RFdnOYiFRTqB7lAdW3grEFhMEP6wwDY98OzRy-1aIbyzFW7hssZP0C66jJD1pg",
"developer": "Doosan Bobcat",
"developerId": "Doosan+Bobcat",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Bobcat North America Dealer Meeting App",
"scoreText": "0.0",
"score": 0
},
{
"title": "klik Event App",
"appId": "com.pixmob.klik.event_app_android",
"url": "https://play.google.com/store/apps/details?id=com.pixmob.klik.event_app_android",
"icon": "https://play-lh.googleusercontent.com/YWQhe4A9Ko1hlNTYOgZm31QxNXp_yg8Ytlnyk8m36y6zkixpj130ZxnUTSI0bC6JYhM",
"developer": "PixMob klik",
"developerId": "PixMob+klik",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "The klik event app manages your event from beginning to end",
"scoreText": "3.6",
"score": 3.6
},
{
"title": "Disco Light: Flashlight with Strobe Light & Music",
"appId": "com.chic.colorfuldiscolights2",
"url": "https://play.google.com/store/apps/details?id=com.chic.colorfuldiscolights2",
"icon": "https://play-lh.googleusercontent.com/rcbXmmdJhdstjui4sg8FmHVjt3gEQMq2AGx5QcHw0-uuSKHGtITYiOQc5tUJIosrDg",
"developer": "Chic Apps",
"developerId": "5840664117349588017",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Create your party and dance with the best disco light flashlight NOW! 💃",
"scoreText": "4.3",
"score": 4.28
},
{
"title": "ETHDenver 22",
"appId": "com.sched.ethdenver",
"url": "https://play.google.com/store/apps/details?id=com.sched.ethdenver",
"icon": "https://play-lh.googleusercontent.com/iUtVgvF4d0xbGUBgbDGWGFBQdGGPd5WewSXwpTMc8cEGxvaDHg17Nf3m_e0PmOsLKTY8",
"developer": "ETHDenver",
"developerId": "7297115021343572327",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "ETHDenver 2022 Schedule",
"scoreText": "0.0",
"score": 0
},
{
"title": "زيادة صوت الهاتف - تنظيفه من الماء و الغبار",
"appId": "com.mobeasyapp.app208375477661",
"url": "https://play.google.com/store/apps/details?id=com.mobeasyapp.app208375477661",
"icon": "https://play-lh.googleusercontent.com/NvQzAUFDsz-Y_HQe65DqpXDPIgmUB2FftpphYKsy0qugXPRSI_wGFX2sX7fTUyMXoA",
"developer": "Med APK",
"developerId": "8801568248243728033",