-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathDATING.txt
2802 lines (2802 loc) · 106 KB
/
DATING.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": "Bumble - Dating. Friends. Bizz",
"appId": "com.bumble.app",
"url": "https://play.google.com/store/apps/details?id=com.bumble.app",
"icon": "https://play-lh.googleusercontent.com/tH2ui3MqYnTyt7EG9S3DVNDO7SV7eRtts2phjaE-vZNBvf4meAx5_a5LZc_IbZGAFw",
"developer": "Bumble Holding Limited",
"developerId": "6810146070790225259",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "The dating app to match, chat and date to find a relationship or meet friends.",
"scoreText": "2.8",
"score": 2.8221803
},
{
"title": "Hinge - Dating & Relationships",
"appId": "co.hinge.app",
"url": "https://play.google.com/store/apps/details?id=co.hinge.app",
"icon": "https://play-lh.googleusercontent.com/5P5svqXNCWqE0NtHSV91pl2YUGKJ2aitjaUWIVZd-65AtskDVO2o9bpYx1oAV9fr0-nt",
"developer": "Hinge, Inc.",
"developerId": "Hinge,+Inc.",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "The Dating App Designed to be Deleted",
"scoreText": "3.5",
"score": 3.4598794
},
{
"title": "Badoo - Dating. Chat. Meet.",
"appId": "com.badoo.mobile",
"url": "https://play.google.com/store/apps/details?id=com.badoo.mobile",
"icon": "https://play-lh.googleusercontent.com/dPbO3HO-CJKfDdjgIwh_K2OAhnPRAC0uhBKbvWQWtMyHJot1wDMvvOLF4Ia-hNfeLWg",
"developer": "Badoo",
"developerId": "5884062829898474398",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "The online dating app to match, chat and date, meet people and find friends.",
"scoreText": "4.1",
"score": 4.0628495
},
{
"title": "HD Video Screen Mirroring",
"appId": "com.jukenga.nahip",
"url": "https://play.google.com/store/apps/details?id=com.jukenga.nahip",
"icon": "https://play-lh.googleusercontent.com/qGq5OY6Gkhj1sEKVN1ZcZugvYUzcFB6Wn7V6zH_GEEYzFHnHJi7Jb_2V2d2qSUNRzos",
"developer": "Haydrabadi",
"developerId": "Haydrabadi",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Screen Mirroring is the best app for Connect & mirroring your phone to your TV",
"scoreText": "3.6",
"score": 3.5952382
},
{
"title": "OkCupid: Online Dating App",
"appId": "com.okcupid.okcupid",
"url": "https://play.google.com/store/apps/details?id=com.okcupid.okcupid",
"icon": "https://play-lh.googleusercontent.com/paVjCzUNZBzQ8RI4TttQGM7PpW2IZuFgT_ryeAYs-mBBDWk2q7cX8bv6-_t2hnI5hZo",
"developer": "okcupid.com",
"developerId": "5985505151266094438",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Join millions of singles looking to match right now and start 2022 with love",
"scoreText": "3.7",
"score": 3.6788373
},
{
"title": "BLK - Meet Black singles nearby!",
"appId": "com.affinityapps.blk",
"url": "https://play.google.com/store/apps/details?id=com.affinityapps.blk",
"icon": "https://play-lh.googleusercontent.com/iJPFgFYmvZcHYYiqth_SKO12apGRM7uDPgwzDwAEKvvJDxKCsYzZbpHSrrsECVJQzaA",
"developer": "BLK Dating",
"developerId": "5225351988857066521",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "A fun, easy-to use dating app for Black men and Black women.",
"scoreText": "4.2",
"score": 4.1760507
},
{
"title": "Dating and Chat - SweetMeet",
"appId": "ru.fotostrana.sweetmeet",
"url": "https://play.google.com/store/apps/details?id=ru.fotostrana.sweetmeet",
"icon": "https://play-lh.googleusercontent.com/yjtSw-BYxxhBi8zW4P6Z8o_1pCZJ2_98jmjlym2PcnF1-pEp4Wja-q4IHwSVqb5_JRU",
"developer": "SweetMeet",
"developerId": "SweetMeet",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Dating app. Lonely people from your city, find friends and love.",
"scoreText": "4.1",
"score": 4.0735044
},
{
"title": "uDates - Local Dating & Chat",
"appId": "com.udates",
"url": "https://play.google.com/store/apps/details?id=com.udates",
"icon": "https://play-lh.googleusercontent.com/W9smzYj0B_9RLAIiEA_GqHJP1I6X0nxmwNvdRdbSXS76x4-nVI3meKIBZgNZvk3gFaxc",
"developer": "SIA \"BATTIKA\"",
"developerId": "SIA+%22BATTIKA%22",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Meet people: match, chat online & have a romantic date or just make friends!",
"scoreText": "4.3",
"score": 4.348601
},
{
"title": "Hily Dating - Meet And Chat",
"appId": "com.hily.app",
"url": "https://play.google.com/store/apps/details?id=com.hily.app",
"icon": "https://play-lh.googleusercontent.com/DkivNnXfBjlRNfDYT6CJzooUd5WpqtmY-pMox67kaoxVeIUmjWYkxgyYeJoypOCHysU",
"developer": "Hily Corp.",
"developerId": "8466050068348543977",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Meet new people, chat friends, local singles. Flirt, find love, relationship.",
"scoreText": "4.4",
"score": 4.409881
},
{
"title": "BUBU Dating: Meet, Match, Date",
"appId": "app.bubu",
"url": "https://play.google.com/store/apps/details?id=app.bubu",
"icon": "https://play-lh.googleusercontent.com/F7aWQvjWCCoMk6iUNGnQd1bnrje9sfd5ZIUm7-rGihmDrZiqfy-eKGyYxu4yV4RLdC8",
"developer": "BUBU Mobile",
"developerId": "BUBU+Mobile",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Chat, match & date local flirty singles! Meet, start dating & find true love",
"scoreText": "4.0",
"score": 4.0321546
},
{
"title": "Match Dating: Chat, Date, Meet Singles & Find Love",
"appId": "com.match.android.matchmobile",
"url": "https://play.google.com/store/apps/details?id=com.match.android.matchmobile",
"icon": "https://play-lh.googleusercontent.com/y6iCFBHUmbKyptLeu6d6QGwbMDIAYKM3zrkIMTjS88ot2v630Hu3bIXH1GLxGkz470e1",
"developer": "Match.com LLC",
"developerId": "6150832974034049823",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Online dating: meet, chat & connect with singles. Find someone right for you.",
"scoreText": "3.4",
"score": 3.380669
},
{
"title": "Meetville - Dating, Chat & Meet New People",
"appId": "com.meetville.dating",
"url": "https://play.google.com/store/apps/details?id=com.meetville.dating",
"icon": "https://play-lh.googleusercontent.com/KBSVdUHsuscGzrR8I5RM2bxOa6GhqeK0KfIlV7vSe2sIPDSja9Swi7fH4risRk7HBg",
"developer": "Avanta",
"developerId": "5431035605487416523",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Date with Singles near you & around the world. Enjoy Meeting New Friends!",
"scoreText": "3.8",
"score": 3.7502184
},
{
"title": "Stir - Dating for Single Parents",
"appId": "com.match.android.stir",
"url": "https://play.google.com/store/apps/details?id=com.match.android.stir",
"icon": "https://play-lh.googleusercontent.com/kAJIyUtCAUGR8AxaJDo5Bs2PXVu7bQXdjCEmhhUYFjYa7K2Bz_e4a50mQJxV9mL_nA",
"developer": "Match.com LLC",
"developerId": "6150832974034049823",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Match and chat with members of this single parent community",
"scoreText": "3.3",
"score": 3.2761905
},
{
"title": "Zoosk - Social Dating App",
"appId": "com.zoosk.zoosk",
"url": "https://play.google.com/store/apps/details?id=com.zoosk.zoosk",
"icon": "https://play-lh.googleusercontent.com/g8AFgxUkybT7dsjn5DfTdbGg0Ij2lk0AYxpf6qBInZKeJNLI8f5AVpZq4oeqqThbt7s",
"developer": "Zoosk Inc.",
"developerId": "Zoosk+Inc.",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "More ways to meet people - Match, Chat & Date",
"scoreText": "3.5",
"score": 3.488595
},
{
"title": "Chispa - Dating for Latinos",
"appId": "com.affinityapps.chispa",
"url": "https://play.google.com/store/apps/details?id=com.affinityapps.chispa",
"icon": "https://play-lh.googleusercontent.com/NRYkzHfpqoVw2-SD9zxGkWege1l_wAI3osp7WpDA9zLHKa41Anqzhm3rAV_jEYoq5xDD",
"developer": "Chispa Dating",
"developerId": "8671028793976441754",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "A fun, easy-to-use dating app for Latinos and Latinas.",
"scoreText": "4.3",
"score": 4.267322
},
{
"title": "Dating and Chat - Evermatch",
"appId": "com.evermatch",
"url": "https://play.google.com/store/apps/details?id=com.evermatch",
"icon": "https://play-lh.googleusercontent.com/wK4_NSBoJzTFrLLBQAk2NpRHwbZkC8QjjM9SDWhGjalNq3O8Ndc7tcKERVdQLbXS6Q",
"developer": "Evermatch",
"developerId": "Evermatch",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "An app for serious relationships, getting married, and settling down.",
"scoreText": "4.2",
"score": 4.2
},
{
"title": "WooPlus - Dating App for Curvy",
"appId": "com.mason.wooplus",
"url": "https://play.google.com/store/apps/details?id=com.mason.wooplus",
"icon": "https://play-lh.googleusercontent.com/LgZ-k1wcuv2q2_xG7uFuux7uh0_9Algefo_EGcTHEmOPf10YWLNMZcafCcjxTdWlfCQ",
"developer": "Dating Apps by Oasis",
"developerId": "8000647695875877970",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Dating app to Chat & Flirt with Curvy Singles! Date, Match & Meet new people!",
"scoreText": "4.4",
"score": 4.3930283
},
{
"title": "eharmony online dating for you",
"appId": "com.eharmony",
"url": "https://play.google.com/store/apps/details?id=com.eharmony",
"icon": "https://play-lh.googleusercontent.com/BjkUxZXS0VsiuMb3wXjh-XiqzLsC_FIp01CbgkrmLE2ZaAAJNhhcCV46Ve8DPD8Tn7Q",
"developer": "eHarmony.com",
"developerId": "eHarmony.com",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Your dating site to learn about yourself and fall in love with someone special",
"scoreText": "3.2",
"score": 3.1551266
},
{
"title": "Dating with singles - iHappy",
"appId": "com.ihappydate",
"url": "https://play.google.com/store/apps/details?id=com.ihappydate",
"icon": "https://play-lh.googleusercontent.com/q7tW73XEIlowB6A0dmUrQscg6UOmJh4_Q_UGr0eqspDU4rhpXeEfq2uQsbin9sHHDA",
"developer": "ihappydate",
"developerId": "ihappydate",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Dating with girls and men in your city. Chat, flirt and love.",
"scoreText": "3.9",
"score": 3.9333334
},
{
"title": "FWB Hookup & NSA Dating: XFun",
"appId": "com.fwbhookup.xpal",
"url": "https://play.google.com/store/apps/details?id=com.fwbhookup.xpal",
"icon": "https://play-lh.googleusercontent.com/yZm1nf5Kgeh2Okucz8U26FdERby9Jz2LLEv4XFaSqNfBeNGViH5Vl5R__rHzdaMHcw5X",
"developer": "XFun LTD",
"developerId": "XFun+LTD",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Hook up finder app & dating site to flirt, date local adult friend, pure singles",
"scoreText": "4.6",
"score": 4.5538116
},
{
"title": "Upward: Christian Dating - Meet Christian Singles",
"appId": "com.affinityapps.twozerofour",
"url": "https://play.google.com/store/apps/details?id=com.affinityapps.twozerofour",
"icon": "https://play-lh.googleusercontent.com/PfxTwF_H_mfNk7igzr1LyNDwj19uTKr4Yr_a0PLKCKzXSW1nSo-trugHZ_-EuVEK41w",
"developer": "Affinity Apps, LLC",
"developerId": "Affinity+Apps,+LLC",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Match, chat and meet local Christian singles. Find your date & connect on Faith.",
"scoreText": "3.9",
"score": 3.8993974
},
{
"title": "Ashley Madison",
"appId": "com.ashleymadison.mobile",
"url": "https://play.google.com/store/apps/details?id=com.ashleymadison.mobile",
"icon": "https://play-lh.googleusercontent.com/po3DigFhOVgQFDjeY0Vdstm-39ijIpXW4bI51HCSx68OVLHnrJS8zn0hWZkXviZnUao",
"developer": "Ruby Life Inc.",
"developerId": "Ruby+Life+Inc.",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Experience passion and find your moment with Ashley Madison’s online dating app.",
"scoreText": "2.8",
"score": 2.7600768
},
{
"title": "Feeld: Meet Couples & Singles",
"appId": "co.feeld",
"url": "https://play.google.com/store/apps/details?id=co.feeld",
"icon": "https://play-lh.googleusercontent.com/i-Nj5MVnu6Dek0z2x3a2z7Ly1G3nbkIq3uRtgH4w1XcLpsVazk-mImNbsF6_qdf2upQ",
"developer": "Feeld Ltd.",
"developerId": "Feeld+Ltd.",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Online dating for polyamorous couples, bisexual singles & open-minded humans",
"scoreText": "3.4",
"score": 3.4474187
},
{
"title": "MomsxPlay Dates - Find Local Playful Moms",
"appId": "com.findxlocalmomsx.momsxplaydates",
"url": "https://play.google.com/store/apps/details?id=com.findxlocalmomsx.momsxplaydates",
"icon": "https://play-lh.googleusercontent.com/CGABsRNbZ_3zBcFTOF4pXXaEY-ariY_ePQhn-2EuUJZDviJ5JHKp_GN40Sux68-oTCU",
"developer": "Local Dates",
"developerId": "Local+Dates",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Connect with classy playful ladies seeking younger men!",
"scoreText": "4.7",
"score": 4.6796117
},
{
"title": "Bicupid: Singles, Couples Date",
"appId": "com.bi.bicupid",
"url": "https://play.google.com/store/apps/details?id=com.bi.bicupid",
"icon": "https://play-lh.googleusercontent.com/Q6iR4PYEWkUOAzQEzZ5TKnl3QcZenNUiy1taP2Hphfb4dzLLop5c9FIUk1Mflhg_vnV7",
"developer": "Bisexual Dating App",
"developerId": "Bisexual+Dating+App",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Meet & Date Hookup with Curious for Bi, Trans, Threesome, Swinger, Gay & Lesbian",
"scoreText": "4.7",
"score": 4.724359
},
{
"title": "Whatsflirt – Chat and Flirt",
"appId": "com.hitperformance.whatsflirt",
"url": "https://play.google.com/store/apps/details?id=com.hitperformance.whatsflirt",
"icon": "https://play-lh.googleusercontent.com/8gdIAAFd3IFQaWg-vWif-L3fydIxmbrL8DokaDDutb7CL9zlAwmjxLYMyk1hHfXfRJY",
"developer": "Hit Performance B.V.",
"developerId": "Hit+Performance+B.V.",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Chat and Flirt - The fastest way to meet new people!",
"scoreText": "4.4",
"score": 4.3934426
},
{
"title": "Clover - Live Stream Dating",
"appId": "co.clover.clover",
"url": "https://play.google.com/store/apps/details?id=co.clover.clover",
"icon": "https://play-lh.googleusercontent.com/14VVpSCGlITX_BQ1vrHrugrDMslGkFusxpQSQChTEI9DyxIDOtmZfJjvAJTgfDdPpA",
"developer": "Clover Inc.",
"developerId": "Clover+Inc.",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Go Live & Meet New People!",
"scoreText": "4.0",
"score": 3.9547706
},
{
"title": "iris - Dating & Relationships",
"appId": "com.idealmatch.idma",
"url": "https://play.google.com/store/apps/details?id=com.idealmatch.idma",
"icon": "https://play-lh.googleusercontent.com/Pw6mH3fZVQBhf59E1pAsXDm-0QdH_mjb__vMWHhmjqNPDMYmul5AkpY1kLiZwPuZNcUZ",
"developer": "IRIS Team",
"developerId": "IRIS+Team",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Iris Uses Artificial Intelligence to Reduce the Time It Takes to Find a Match.",
"scoreText": "4.4",
"score": 4.4312024
},
{
"title": "PURE Hookup - anonymous dating",
"appId": "com.getpure.pure",
"url": "https://play.google.com/store/apps/details?id=com.getpure.pure",
"icon": "https://play-lh.googleusercontent.com/QHaNNXCjyHRudPH8PWwzkwT8zfVuikNaOTOYFVOY7rYmoF79EpEh_RTryB76L5RI9g",
"developer": "Misterico Limited",
"developerId": "Misterico+Limited",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Сasual dating with no strings attached: meet couples & singles in anonymous chat",
"scoreText": "4.2",
"score": 4.1898227
},
{
"title": "XOXO - Chat & Make New Friends",
"appId": "com.lovinga",
"url": "https://play.google.com/store/apps/details?id=com.lovinga",
"icon": "https://play-lh.googleusercontent.com/3Rp2aCRIgWU33DXtjz12_0BNVNJaKehJIE9PDQmGMHZxCtT5DQtt6iymaoSKQOG4_0s",
"developer": "DMM SOLUTIONS INC.",
"developerId": "DMM+SOLUTIONS+INC.",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Join Your Clan and Play Dating",
"scoreText": "4.7",
"score": 4.702546
},
{
"title": "DateMyAge™ - Mature Dating 40+",
"appId": "com.datemyage",
"url": "https://play.google.com/store/apps/details?id=com.datemyage",
"icon": "https://play-lh.googleusercontent.com/RKfbKXLQNBkRX_GwdiopdthJraM7vLhdNQdE_QJV_CuRigijQ6eRqz6pHNzZBwZPgUg",
"developer": "Stende Solutions Limited",
"developerId": "Stende+Solutions+Limited",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Discover mature women & men 40+ on the DateMyAge dating app. Find your soulmate!",
"scoreText": "4.4",
"score": 4.3696203
},
{
"title": "Dating.com™: Chat, Meet People",
"appId": "com.dating.android",
"url": "https://play.google.com/store/apps/details?id=com.dating.android",
"icon": "https://play-lh.googleusercontent.com/XyCVFY3xZC-ovtwfq2BNlBsNCYeDlpwuNwSC7lDpevjsUzkyeKBBZ045uuM0IYdg2vnW",
"developer": "DMM SOLUTIONS INC.",
"developerId": "DMM+SOLUTIONS+INC.",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Enjoy dating with perfect match, instant chat and live streaming!",
"scoreText": "4.3",
"score": 4.2737865
},
{
"title": "Live Talk: Live Video Call App",
"appId": "us.livevideocall.randomchat.livetalk",
"url": "https://play.google.com/store/apps/details?id=us.livevideocall.randomchat.livetalk",
"icon": "https://play-lh.googleusercontent.com/P05Ugbq2F4dtGlPkwYqnsh8b7pKsfNUfRDUOwVJcVIRP1T03WT3Zvg4bxrvt1vzXPpU",
"developer": "Stardomsolution developer",
"developerId": "Stardomsolution+developer",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Live video call to meet strangers & Random video call, Live Talk with any people",
"scoreText": "4.2",
"score": 4.181818
},
{
"title": "BBW Dating & Hookup - Pluser",
"appId": "com.bbw.curvy",
"url": "https://play.google.com/store/apps/details?id=com.bbw.curvy",
"icon": "https://play-lh.googleusercontent.com/s25lfGAjc7pEJRiqfFIweriGbhNqtcFwH96ekMK2jBXrgqNE9VSS8z9H1ONR-_aaKZoE",
"developer": "VITA TEAM",
"developerId": "VITA+TEAM",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Pluser for curvy singles is a free dating app for bbw and big men and adimires",
"scoreText": "4.2",
"score": 4.2
},
{
"title": "Threesome Swingers App - 3way",
"appId": "app.threesome.dating",
"url": "https://play.google.com/store/apps/details?id=app.threesome.dating",
"icon": "https://play-lh.googleusercontent.com/GoFmRdQV9aVqJv6jL5fK_6D6NJa1BP4pkFp2M7nB6BiIHTOsVpOgvBuNHuA7AADs1KHe",
"developer": "Threesome Dating & Hookup Apps",
"developerId": "Threesome+Dating+%26+Hookup+Apps",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Hookup Dating App for Gay, Lesbian, Bisexual People Seeking 3some Fet Life-style",
"scoreText": "4.8",
"score": 4.8112245
},
{
"title": "FWB Hookup & Adult Dating app",
"appId": "com.dating.sugara",
"url": "https://play.google.com/store/apps/details?id=com.dating.sugara",
"icon": "https://play-lh.googleusercontent.com/S3XyaPAFmPocXd5EEKji42NWDqMNgky2Anf6Mp6yiJeJRbwoDh7clUB7ktDeVrPb3A",
"developer": "FWB & NSA Hookup Dating App",
"developerId": "FWB%C2%A0%26%C2%A0NSA%C2%A0Hookup%C2%A0Dating%C2%A0App",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Seeking NSA or FWB Hook up Dating App for Affair Married Adult Friend Finder",
"scoreText": "5.0",
"score": 4.971936
},
{
"title": "Black White Interracial Dating",
"appId": "com.blackwhitemeet",
"url": "https://play.google.com/store/apps/details?id=com.blackwhitemeet",
"icon": "https://play-lh.googleusercontent.com/9XgChPmt2JTeG-aeZZ-ERyA1pPubez2Lx8Qvaij-xAPUld45H_z_bsNkcBs7ErbpgU3i",
"developer": "Black White Dating",
"developerId": "Black+White+Dating",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Interracial dating app for black women white men, including Asian, Latino, mixed",
"scoreText": "4.6",
"score": 4.573269
},
{
"title": "Video Call Random Chat - Live Talk",
"appId": "com.bdvideocall.randomvideocall",
"url": "https://play.google.com/store/apps/details?id=com.bdvideocall.randomvideocall",
"icon": "https://play-lh.googleusercontent.com/taYmLwCTbPTnfCW2nDq0Sz_i4PuL11lSCFYY58PM1tEfyfHsVQutouC472rLDM8-UIs",
"developer": "Mithila",
"developerId": "Mithila",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Make video calls to new people make them friends and enjoy",
"scoreText": "4.2",
"score": 4.22
},
{
"title": "Xxnxx xBrowser - vpn lates version 2021",
"appId": "com.xnxxbroservpn.latesbroserxnx",
"url": "https://play.google.com/store/apps/details?id=com.xnxxbroservpn.latesbroserxnx",
"icon": "https://play-lh.googleusercontent.com/jbMbxV4ZXtQDfoqgmgFdix4b32qES9ZLOyJsZEE6Kdj1WjnbRPCnXhRrGikDDr3VZls",
"developer": "Free Musik T.M.D",
"developerId": "Free+Musik+T.M.D",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "x-Browser lates version 2021 Unblock Positive, Safe and Fast",
"scoreText": "4.1",
"score": 4.06
},
{
"title": "Hookup & Casual Dating: Kasual",
"appId": "co.lucky.hookup",
"url": "https://play.google.com/store/apps/details?id=co.lucky.hookup",
"icon": "https://play-lh.googleusercontent.com/79OkD9PhiiduGiORa-vp07Q-6qLYZVSY7oka0llR9yEt5-wRTFPBJSA1Y79SBRJ_TPE",
"developer": "Yumi Limited",
"developerId": "Yumi+Limited",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Casual dating app for local hook ups, anonymous chats, and NSA meet ups.",
"scoreText": "4.4",
"score": 4.3930635
},
{
"title": "Live Video call - Global Call",
"appId": "com.swastik.global.videocall.girlcall",
"url": "https://play.google.com/store/apps/details?id=com.swastik.global.videocall.girlcall",
"icon": "https://play-lh.googleusercontent.com/QuDcnMGTLxsF_YbiACuOBcrySfpakRW8YrKpmkMyg87-Ik9QWPa1sgw-XJ8XjEt---Vz",
"developer": "flomda",
"developerId": "flomda",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Live Video call - Global Call app is a free online live video chat app.",
"scoreText": "4.1",
"score": 4.071429
},
{
"title": "Seeking",
"appId": "com.infostream.seekingarrangement",
"url": "https://play.google.com/store/apps/details?id=com.infostream.seekingarrangement",
"icon": "https://play-lh.googleusercontent.com/YBCkz_XH6Eixb9n-akOFisTaryCVGSVEADcapfnDp1-4WWhA8GJncYIhaUz25fWJ81I",
"developer": "W8 Tech Limited",
"developerId": "W8+Tech+Limited",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "The #1 dating app for millionaires, successful, beautiful and attractive people",
"scoreText": "3.8",
"score": 3.8201258
},
{
"title": "OurTime Dating for Singles 50+",
"appId": "com.peoplemedia.ourtime",
"url": "https://play.google.com/store/apps/details?id=com.peoplemedia.ourtime",
"icon": "https://play-lh.googleusercontent.com/Nap6mdN2jWPPtVPVIsnp2pkIvtf16di7G4cemQam4tQMm-aPpiCb4c7h6Byojxz2WIY",
"developer": "OurTime.com",
"developerId": "OurTime.com",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "OurTime - dating app to meet singles over 50. Discover senior singles near you.",
"scoreText": "2.9",
"score": 2.9427402
},
{
"title": "Hookups - Hookup Dating for Singles Date Hook Up",
"appId": "com.socialnetwork.hookupsapp",
"url": "https://play.google.com/store/apps/details?id=com.socialnetwork.hookupsapp",
"icon": "https://play-lh.googleusercontent.com/GTnoG64OnULiwjcgG76VGdDLncpKrwZ_ZMC90M5JEScPKCaysp7xI54arBtULWVCvAM",
"developer": "HookupsApp",
"developerId": "HookupsApp",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "#1 Adult Chat Hookup App for Fun Singles and Couples, Meet New People Online",
"scoreText": "4.9",
"score": 4.887324
},
{
"title": "Kippo - Come Hang Out",
"appId": "com.covalent.kippo",
"url": "https://play.google.com/store/apps/details?id=com.covalent.kippo",
"icon": "https://play-lh.googleusercontent.com/SsHeFMp3Vu6KWDWrC50xQWygZvnyq4Cp7w1EIPp7pjwvx8VJ8ZQZOd9fF6UUaypni3Y",
"developer": "Covalent Inc.",
"developerId": "Covalent+Inc.",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Hang out with friends, meet people.",
"scoreText": "3.7",
"score": 3.738562
},
{
"title": "Coffee Meets Bagel Dating App",
"appId": "com.coffeemeetsbagel",
"url": "https://play.google.com/store/apps/details?id=com.coffeemeetsbagel",
"icon": "https://play-lh.googleusercontent.com/2mJVjIklB7PVlN2T1nXt-z2nHvp_0hbsxAiQi5d-Xif1vlBWla3pE-PwW2zhMy_zPNIQ",
"developer": "Coffee Meets Bagel",
"developerId": "7286006040182189336",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "The dating app for real relationships",
"scoreText": "3.7",
"score": 3.6820037
},
{
"title": "iFlirts – Flirt, Dating & Chat",
"appId": "com.appspartner.iflirts",
"url": "https://play.google.com/store/apps/details?id=com.appspartner.iflirts",
"icon": "https://play-lh.googleusercontent.com/VqlXJvDpchf1u1wpAntQyDExDNTbauUqlDZkNba7SxovcKb2sUuWUfv-kh_LZvtzrw",
"developer": "Appspartner B.V.",
"developerId": "Appspartner+B.V.",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Chat with attractive singles, fall in love and date",
"scoreText": "4.7",
"score": 4.7123656
},
{
"title": "Black People Meet Singles Date",
"appId": "com.peoplemedia.blackpeoplemeet",
"url": "https://play.google.com/store/apps/details?id=com.peoplemedia.blackpeoplemeet",
"icon": "https://play-lh.googleusercontent.com/UiesReRxBM7n6ev_y5sd3bDTVyaJFAEZzmjOwAGrVXeFiZnAgdFIWNfnXkJRYmNUUUI",
"developer": "Black People Meet",
"developerId": "Black+People+Meet",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Black People Meet – #1 black singles dating app to meet singles near you",
"scoreText": "3.3",
"score": 3.3021097
},
{
"title": "Y Hookup App FWB Adult dating",
"appId": "com.tabooapp.dating",
"url": "https://play.google.com/store/apps/details?id=com.tabooapp.dating",
"icon": "https://play-lh.googleusercontent.com/rIwCbe-Wg8ehxlFt7aAcJtVw95l0FBFF9B_bw21NPwcfQbqQtLi4sqmUIKWlYYNgQ_A",
"developer": "Arseniy Lavrentev",
"developerId": "Arseniy+Lavrentev",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Adult Friend Finder One night casual hookup dating, meet people anonymous chat.",
"scoreText": "4.2",
"score": 4.242245
},
{
"title": "Anonymous Chat Rooms, Dating",
"appId": "com.antiland",
"url": "https://play.google.com/store/apps/details?id=com.antiland",
"icon": "https://play-lh.googleusercontent.com/V7gjmM3yBDePIdI_tm2h4-ieOX12ZafOp9bYPqzJvzgIAdCaIHuvMALN4_IhVKIeqA",
"developer": "Anti Corporation",
"developerId": "Anti+Corporation",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Anonymous chat to meet new people, make friends, and share pics & video",
"scoreText": "4.0",
"score": 4.037422
},
{
"title": "Cougar: Older Women Dating App",
"appId": "com.cougardating.olderwomendating",
"url": "https://play.google.com/store/apps/details?id=com.cougardating.olderwomendating",
"icon": "https://play-lh.googleusercontent.com/WoXSOqM0fCTsy0X_flUYkjIDz3C_AlnRdWLhQer3CylRbUWX-YO_8vEnQ4710TAIeRA",
"developer": "Cougar Dating Service",
"developerId": "Cougar+Dating+Service",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Cougar Life,Date Hook up Mature Lady & Seeking Adult Singles,Meet Me Up,Hookup",
"scoreText": "4.7",
"score": 4.6505294
},
{
"title": "AmoLatina - Chat, Meet, Date",
"appId": "com.amolatina",
"url": "https://play.google.com/store/apps/details?id=com.amolatina",
"icon": "https://play-lh.googleusercontent.com/kuFU9vvFPHrX1iEddcXguQsWfcAKn9tEy8cELsD_c8RzNwXss9B_SwoVfiVZAccOOLP4",
"developer": "DMM SOLUTIONS INC.",
"developerId": "DMM+SOLUTIONS+INC.",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Date like fire on AmoLatina and bring your Latin dating alive with live streams!",
"scoreText": "3.7",
"score": 3.7362638
},
{
"title": "Dating and chat - Maybe You",
"appId": "com.maybeyou",
"url": "https://play.google.com/store/apps/details?id=com.maybeyou",
"icon": "https://play-lh.googleusercontent.com/lwBxT-SXGW_99shrwHIzxUB5nyv248-9b_KfowA0mgBZYtTKftUAX7ewr17hAzWJQYA",
"developer": "Evermatch",
"developerId": "Evermatch",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Dating and communication for single people. Girls and men from your city.",
"scoreText": "4.2",
"score": 4.18
},
{
"title": "YouFlirt - flirt & chat app",
"appId": "com.grandview.youflirt",
"url": "https://play.google.com/store/apps/details?id=com.grandview.youflirt",
"icon": "https://play-lh.googleusercontent.com/3i5e2RKW8wfRPCjCV4s_PdoJSFd20W2twAwUR3xQjAhStXffgwLUswh9r8YYtec5tSQ",
"developer": "Grandview AppCommunity GmbH",
"developerId": "Grandview+AppCommunity+GmbH",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Flirt App | Flirt and chat with singles near you - YouFlirt",
"scoreText": "3.9",
"score": 3.9310346
},
{
"title": "Turn Up - Match through music!",
"appId": "com.dately",
"url": "https://play.google.com/store/apps/details?id=com.dately",
"icon": "https://play-lh.googleusercontent.com/OvMFDnre4bRTdahXZM2ZTwg-SNEggIbpDk6GQVbULRidwQ_as2kD6PVwDCJO_Q70c8A6",
"developer": "Dately",
"developerId": "Dately",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Match people with your music tastes!",
"scoreText": "2.8",
"score": 2.84
},
{
"title": "Moms For Flirt: Meet Flirty Real Women 40+",
"appId": "com.momsforflirt.meet.real.women",
"url": "https://play.google.com/store/apps/details?id=com.momsforflirt.meet.real.women",
"icon": "https://play-lh.googleusercontent.com/vHVexIwUDcV1Tt53i_TT57mkcOpVWUrVx3k4ieUZm_GRtpoSF04j_uoQK4XmbxuzVOSU",
"developer": "Moms for Flirt",
"developerId": "Moms+for+Flirt",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Find your perfect mature match with our survey!",
"scoreText": "4.8",
"score": 4.806667
},
{
"title": "Christian Mingle: Dating app - Meet Local Singles!",
"appId": "com.spark.christianmingle",
"url": "https://play.google.com/store/apps/details?id=com.spark.christianmingle",
"icon": "https://play-lh.googleusercontent.com/50MVXvkM9_GqxJXz1ATxhL4Gn4VBsq4L3c43zP_AuOzhpwxcrJ_f-IOK_QZgZLfdUkU",
"developer": "Spark Networks SE",
"developerId": "Spark+Networks+SE",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Christian, Single and looking for love? ❤️ Join in this Christian Dating App",
"scoreText": "1.7",
"score": 1.7353992
},
{
"title": "AgeMatch™️: Mature Gap Dating",
"appId": "com.agegapdating.agematch",
"url": "https://play.google.com/store/apps/details?id=com.agegapdating.agematch",
"icon": "https://play-lh.googleusercontent.com/aMeeYhk8NEOtZXqD6SouDkoRrQEG8hrajXsBfwhi0cAL4r5jZhPMlsu4xL4MCAXCxjM",
"developer": "AGEGAP LOVE & AGEMATCH.COM SINCE 2002",
"developerId": "AGEGAP+LOVE+%26+AGEMATCH.COM+SINCE+2002",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Hookup app for elite seeking attractive singles. Adult friend finder meet & chat",
"scoreText": "4.9",
"score": 4.8705034
},
{
"title": "3Fun - Threesome Dating for Couples & Singles",
"appId": "com.threesome.swingers.threefun",
"url": "https://play.google.com/store/apps/details?id=com.threesome.swingers.threefun",
"icon": "https://play-lh.googleusercontent.com/XPKXldpJNcw3UeH93_wsCgRbS571i6oAi48EWbKsi_Kg6HbsqJYZfvb5dC0js4nCjlI",
"developer": "3Fun Limited",
"developerId": "3Fun+Limited",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Meet Open-minded Couples & Singles for Bi/Bisexual, Gay, Lesbian",
"scoreText": "4.2",
"score": 4.198347
},
{
"title": "Mingle2: Dating, Chat & Meet",
"appId": "mingle.android.mingle2",
"url": "https://play.google.com/store/apps/details?id=mingle.android.mingle2",
"icon": "https://play-lh.googleusercontent.com/BMC8G2B3tCqoJHSx9c-SqYRDn_YljZaVkWoIWG-F2-z7vm4WeXuvmg4s3egs3GkB1Qk",
"developer": "NextC, LLC - Dating Network",
"developerId": "8827007260752310883",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Online dating to meet, chat, date and hangout with singles near you!",
"scoreText": "4.3",
"score": 4.345953
},
{
"title": "ONE Night - Hook Up Dating App",
"appId": "com.social.onenight",
"url": "https://play.google.com/store/apps/details?id=com.social.onenight",
"icon": "https://play-lh.googleusercontent.com/jaZl_gQ9SPueyjALVyFEqyQTeu0JNb6p_LvjNR4YwMWlQUtvt0-WvywOZfcg6rr6M44",
"developer": "One Dating App",
"developerId": "One+Dating+App",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Free hook up dating app for adult chat",
"scoreText": "3.0",
"score": 3.038835
},
{
"title": "Chathub Stranger Chat No Login",
"appId": "com.strangers.chat_developers.strangerschatapp",
"url": "https://play.google.com/store/apps/details?id=com.strangers.chat_developers.strangerschatapp",
"icon": "https://play-lh.googleusercontent.com/ZpQX7cZY8v3iHtvprI5bbv13TxVieD6bULRMUjQ6D4IZYMxyBd-gA76sFXBfHuohxRI",
"developer": "Strangers chat",
"developerId": "Strangers+chat",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Stranger chat application for talking with random people.",
"scoreText": "3.3",
"score": 3.33
},
{
"title": "DOWN Dating App: Flirt & Meet",
"appId": "down.date.hookup.app",
"url": "https://play.google.com/store/apps/details?id=down.date.hookup.app",
"icon": "https://play-lh.googleusercontent.com/t24UteSPy0-Dycml6jigM1Clc7B1QCVE1Ijub7fdx78MRIKzZmrk5YUs8h1NS4nhvS3O",
"developer": "DOWN Date&Hookup:18+ ONS, FWB",
"developerId": "6584629324210347053",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Private Love: Tap,Match,Date Cute Girls Seeking Friends, Couples&Singles,Romance",
"scoreText": "4.8",
"score": 4.8285713
},
{
"title": "Galaxy - Chat Rooms & Dating",
"appId": "ru.mobstudio.andgalaxy",
"url": "https://play.google.com/store/apps/details?id=ru.mobstudio.andgalaxy",
"icon": "https://play-lh.googleusercontent.com/N7dBbQz4ap5dXmc2gMBZ6z0ao7REFkzMOHkWLISNbB6xthIwVpLjFJvwiTZbuXsOwCY",
"developer": "Galaxy Chat",
"developerId": "Galaxy+Chat",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "No ads and no phone number needed to chat with new people",
"scoreText": "3.8",
"score": 3.7885303
},
{
"title": "Waiter: Less dating, more love",
"appId": "love.waiter.android",
"url": "https://play.google.com/store/apps/details?id=love.waiter.android",
"icon": "https://play-lh.googleusercontent.com/--AXii84KZXtpjmxTZfMYxdLv4dbl5kI98xm3qwgNEC7jLMmhhUeRmLmA-sJFKvgMToY",
"developer": "Waiter dating",
"developerId": "Waiter+dating",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Stop useless dates",
"scoreText": "4.3",
"score": 4.305263
},
{
"title": "Roulette Chat Omegle Random Video Chat Girls App",
"appId": "chat.roulette",
"url": "https://play.google.com/store/apps/details?id=chat.roulette",
"icon": "https://play-lh.googleusercontent.com/r1W19NJcgek7dQ7a07W0TJhcilK4dRyxuzBVVCf0yXS-9a-htekBxPJuaU3mdDVTGDw",
"developer": "Roulette.Chat Omegle Chat Roulette",
"developerId": "Roulette.Chat+Omegle+Chat+Roulette",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Anonymous omegle adult random video roulette chaturbate omega chat with girls",
"scoreText": "4.7",
"score": 4.6596384
},
{
"title": "InMessage : Meet, Chat, Date",
"appId": "dating.inmessage.net",
"url": "https://play.google.com/store/apps/details?id=dating.inmessage.net",
"icon": "https://play-lh.googleusercontent.com/2RaY9aBa4sjhd_FRWEfeEG5jrOateHLntquG8A2dRN25U2MPxWB8Xfe_JBrFP9b4Fw",
"developer": "InMessageApp",
"developerId": "InMessageApp",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Free dating app for everyone ❤️❤️",
"scoreText": "4.6",
"score": 4.59
},
{
"title": "RandoChat - Chat roulette",
"appId": "com.random.chat.app",
"url": "https://play.google.com/store/apps/details?id=com.random.chat.app",
"icon": "https://play-lh.googleusercontent.com/hVLWGjioN3io_eukfF0gP_YMlzpea-YugHDRcAwL6aROwM5q9szGyQwCG_MAXQyU1Dk",
"developer": "WR",
"developerId": "WR",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "A free random and anonymous chat to meet new people without login required.",
"scoreText": "2.9",
"score": 2.9150944
},
{
"title": "SilverSingles: Dating Over 50 Made Easy",
"appId": "com.spark.com.silversingles.app",
"url": "https://play.google.com/store/apps/details?id=com.spark.com.silversingles.app",
"icon": "https://play-lh.googleusercontent.com/4dER1KAsexkp1RhGR6rAhtLUSBx5mydN5ExEbmBzaK9q7HJJ_AFNhZEXJLtZbxy0pGI",
"developer": "Spark Networks Services GmbH",
"developerId": "4813727084772339873",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Install the SilverSingles dating app & join millions of singles over 50 today!",
"scoreText": "2.9",
"score": 2.913669
},
{
"title": "Secret - Dating Nearby Casual",
"appId": "ru.taboo.app",
"url": "https://play.google.com/store/apps/details?id=ru.taboo.app",
"icon": "https://play-lh.googleusercontent.com/IyJdef32fmGrFrSwG8PwFHb__J3jptXFg2M_CAsi044YjbLU6I1l2gHEVsKS26xCyKqL",
"developer": "New Technologies LLC",
"developerId": "New+Technologies+LLC",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "Dating app - Meet strangers, flirt & chat online",
"scoreText": "4.8",
"score": 4.756098
},
{
"title": "Millionaire Match: Rich Dating",
"appId": "com.millionairedating.millionairematch",
"url": "https://play.google.com/store/apps/details?id=com.millionairedating.millionairematch",
"icon": "https://play-lh.googleusercontent.com/Ay1f8ZKqLCEAi1U3RyYA6MLKi1kVSZnSDteqogWGxEonK8tj87at88VhxKJdy0YnoW4",
"developer": "MillionaireMatch Inc",
"developerId": "MillionaireMatch+Inc",
"priceText": "FREE",
"price": 0,
"free": true,
"summary": "The Largest Millionaire Dating App For Seeking The Beautiful, Elite, Rich League",
"scoreText": "4.9",
"score": 4.865906
},
{
"title": "BBWCupid: BBW Dating Plus Chat",
"appId": "com.cupidmedia.wrapper.bbwcupid",
"url": "https://play.google.com/store/apps/details?id=com.cupidmedia.wrapper.bbwcupid",
"icon": "https://play-lh.googleusercontent.com/hey-0zTwWnQa5JZVFKgevcs02cABHNdtZwbN2NIedfvMspvvQAh34RkkXlu8HtmfV9A",