-
Notifications
You must be signed in to change notification settings - Fork 1
/
news.json
1830 lines (1830 loc) · 82.2 KB
/
news.json
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
[
{
"_id": "5d56342f568eb80018926449",
"hotness": 72496.79032407409,
"activityHotness": 0.1,
"primaryCategory": "General",
"words": 470,
"similarArticles": [],
"coins": [
{
"_id": "5a7b931102ac032bc99781f1",
"name": "DATA",
"slug": "data",
"tradingSymbol": "dta"
},
{
"_id": "59cb59f9b0836b0a63aebc7c",
"name": "Ethereum",
"tradingSymbol": "eth",
"slug": "ethereum"
},
{
"_id": "59cb5a047ab17a0b2ec00edf",
"name": "Ripple",
"tradingSymbol": "xrp",
"slug": "ripple"
},
{
"_id": "59cb59e81c073f09e76f614b",
"name": "Bitcoin",
"slug": "bitcoin",
"tradingSymbol": "btc"
},
{
"_id": "59d21e9b83a0523906a45e20",
"name": "DECENT",
"slug": "decent",
"tradingSymbol": "dct"
}
],
"description": "Ripple price trimmed losses after it traded as low as $0.2336 against the US dollar. The price is currently trading above the $0.2500 pivot level with a few positive signs. A major contracting triangle pattern is forming with resistance near $0.2670 on the hourly chart of the XRP/USD pair (data…",
"publishedAt": "2019-08-16T04:08:31.000Z",
"title": "Ripple Price (XRP) Showing Recovery Signs, Bitcoin Back Above $10.2K",
"url": "https://cryptocontrol.io/r/api/article/5d56342f568eb80018926449?ref=5d532cd5568eb80018ddbb73",
"source": {
"_id": "59d71bd7ef8bf95cc2aaf579",
"name": "NewsBTC",
"url": "http://www.newsbtc.com",
"favicon": "https://assets.cryptocontrol.io/favicons/59d71bd7ef8bf95cc2aaf579.png"
},
"sourceDomain": "newsbtc.com",
"originalImageUrl": "https://www.newsbtc.com/wp-content/uploads/2018/01/Ripple_Price_XRP_USD_Analysis3.jpg"
},
{
"_id": "5d560b31568eb800187b3981",
"hotness": 72496.4042958315,
"activityHotness": 0.11133286853070033,
"primaryCategory": "Exchanges",
"words": 375,
"similarArticles": [],
"coins": [
{
"_id": "59cb5a047ab17a0b2ec00edf",
"name": "Ripple",
"tradingSymbol": "xrp",
"slug": "ripple"
}
],
"description": "Ripple content sharing platform Coil receives one billion Ripple (XRP) funding from Ripple Labs, the company behind XRP’s investing arm Xpring. Coil is a monetization platform that rewards content creators with micropayments. According to the announcement, the investment worth around quarter-million…",
"publishedAt": "2019-08-16T01:45:28.000Z",
"title": "Ripple content sharing platform Coil receives 1bn in XRP funding",
"url": "https://cryptocontrol.io/r/api/article/5d560b31568eb800187b3981?ref=5d532cd5568eb80018ddbb73",
"source": {
"_id": "5bda96120c38a7001984d502",
"name": "Cryptopolitan",
"url": "https://www.cryptopolitan.com/",
"favicon": "https://assets.cryptocontrol.io/favicons/5bda96120c38a7001984d502.png"
},
"sourceDomain": "cryptopolitan.com",
"originalImageUrl": "https://cdn.cryptopolitan.com/wp-content/uploads/2019/08/ripple-content-sharing-platform.jpg"
},
{
"_id": "5d55ee59568eb800186c2bb1",
"hotness": 72495.9898420005,
"activityHotness": 0.11484200051182732,
"primaryCategory": "General",
"words": 473,
"similarArticles": [],
"coins": [
{
"_id": "59cb59e81c073f09e76f614b",
"name": "Bitcoin",
"slug": "bitcoin",
"tradingSymbol": "btc"
},
{
"_id": "59d21e9b83a0523906a45f2b",
"name": "Altcoin",
"slug": "altcoin-alt",
"tradingSymbol": "alt"
},
{
"_id": "59cb5a047ab17a0b2ec00edf",
"name": "Ripple",
"tradingSymbol": "xrp",
"slug": "ripple"
}
],
"description": "Most top cryptocurrencies are still falling in price, while Bitcoin price sees some rebound on the day after drop earlier this week.\nThursday, Aug. 15 — Bitcoin ( BTC ) is seeing some upward movement as Ether ( ETH ) and XRP continue to slump.\nMarket visualization. Source: Coin360\nBitcoin is trading…",
"publishedAt": "2019-08-15T23:15:00.000Z",
"title": "Bitcoin Price Shows Signs of Recovery as Altcoin Market Stays Red",
"url": "https://cryptocontrol.io/r/api/article/5d55ee59568eb800186c2bb1?ref=5d532cd5568eb80018ddbb73",
"source": {
"_id": "59d70be3ef8bf95cc2aa2b4f",
"name": "CoinTelegraph",
"url": "https://cointelegraph.com/",
"favicon": "https://assets.cryptocontrol.io/favicons/59d70be3ef8bf95cc2aa2b4f.png"
},
"sourceDomain": "cointelegraph.com",
"originalImageUrl": "https://images.cointelegraph.com/images/740_aHR0cHM6Ly9zMy5jb2ludGVsZWdyYXBoLmNvbS9zdG9yYWdlL3VwbG9hZHMvdmlldy8zMDFiMWE5OGJjZmQ0MmIxNTRhYzI0ZDcwMGYxNGExNC5qcGc=.jpg"
},
{
"_id": "5d55bbf0568eb800184fa709",
"hotness": 72495.46185882435,
"activityHotness": 0.12070141693843262,
"primaryCategory": "Analysis",
"words": 357,
"similarArticles": [],
"coins": [
{
"_id": "59cb5a047ab17a0b2ec00edf",
"name": "Ripple",
"tradingSymbol": "xrp",
"slug": "ripple"
}
],
"description": "The latest Ripple XRP price analysis reveals that the XRP price owners should tread the market carefully Subsiding from any activities that even remotely resemble the act of buying. XRP price has been bearish with a downward trend that has been in a correction pattern which hasn’t ended and has…",
"publishedAt": "2019-08-15T20:02:49.000Z",
"title": "Ripple XRP price analysis: XRP price down by 2.5 percent",
"url": "https://cryptocontrol.io/r/api/article/5d55bbf0568eb800184fa709?ref=5d532cd5568eb80018ddbb73",
"source": {
"_id": "5bda96120c38a7001984d502",
"name": "Cryptopolitan",
"url": "https://www.cryptopolitan.com/",
"favicon": "https://assets.cryptocontrol.io/favicons/5bda96120c38a7001984d502.png"
},
"sourceDomain": "cryptopolitan.com",
"originalImageUrl": "https://cdn.cryptopolitan.com/wp-content/uploads/2019/08/ripple-xrp-price-analysis-15-august-2019.jpg"
},
{
"_id": "5d55b987568eb800184e4717",
"hotness": 72495.40284821176,
"activityHotness": 0.14446858212614458,
"primaryCategory": "ICO",
"words": 368,
"similarArticles": [],
"coins": [
{
"_id": "59cb5a047ab17a0b2ec00edf",
"name": "Ripple",
"tradingSymbol": "xrp",
"slug": "ripple"
}
],
"description": "Amid the Ripple XRP price dropping by more than 10%, the CEO of company Brad Garlinghouse decide to homologate the acts of its investors. Today, he posted a tweet includes the main events that will hold within the scope of the Economic club NY this fall. This event can affect the price of the token…",
"publishedAt": "2019-08-15T19:33:01.000Z",
"title": "Brad Garlinghouse Provides XRP Investors With Huge Hint of What’s to Come",
"url": "https://cryptocontrol.io/r/api/article/5d55b987568eb800184e4717?ref=5d532cd5568eb80018ddbb73",
"source": {
"_id": "5b922ec60c38a7001951cbe6",
"name": "Today's Gazette",
"url": "https://todaysgazette.com",
"favicon": "https://assets.cryptocontrol.io/favicons/5b922ec60c38a7001951cbe6.png"
},
"sourceDomain": "todaysgazette.com",
"originalImageUrl": "https://e6q4r7g2.stackpathcdn.com/wp-content/uploads/2018/12/Brad-Garlinghouse-CEO-Ripple.png"
},
{
"_id": "5d55b8af568eb800184dcd63",
"hotness": 72495.36105879575,
"activityHotness": 0.10953101798043251,
"primaryCategory": "General",
"words": 458,
"similarArticles": [],
"coins": [
{
"_id": "59cb5a047ab17a0b2ec00edf",
"name": "Ripple",
"tradingSymbol": "xrp",
"slug": "ripple"
}
],
"description": "The web monetization platform Coil wants to build awareness among creators, consumers and strategic partners and process micropayments using XRP or other digital assets. Ripple's investments will help it with this aim.",
"publishedAt": "2019-08-15T19:30:33.000Z",
"title": "To Boost XRP Adoption, Ripple Gives 1 Billion XRP Tokens to Content Platform...",
"url": "https://cryptocontrol.io/r/api/article/5d55b8af568eb800184dcd63?ref=5d532cd5568eb80018ddbb73",
"source": {
"_id": "5b4b5794c831fd000f6b5152",
"name": "CoinSpeaker",
"url": "https://www.coinspeaker.com/",
"favicon": "https://assets.cryptocontrol.io/favicons/5b4b5794c831fd000f6b5152.png"
},
"sourceDomain": "coinspeaker.com",
"originalImageUrl": null
},
{
"_id": "5d55ad8a568eb80018474c86",
"hotness": 72495.29703641274,
"activityHotness": 0.12851789422336624,
"primaryCategory": "General",
"words": 596,
"similarArticles": [],
"coins": [
{
"_id": "59cb59e81c073f09e76f614b",
"name": "Bitcoin",
"slug": "bitcoin",
"tradingSymbol": "btc"
},
{
"_id": "59cb5a047ab17a0b2ec00edf",
"name": "Ripple",
"tradingSymbol": "xrp",
"slug": "ripple"
},
{
"_id": "59cb59f9b0836b0a63aebc7c",
"name": "Ethereum",
"tradingSymbol": "eth",
"slug": "ethereum"
},
{
"_id": "59d21e9b83a0523906a45f2b",
"name": "Altcoin",
"slug": "altcoin-alt",
"tradingSymbol": "alt"
}
],
"description": "Across the crypto market, there’s extreme pain, fear, uncertainty, and doubt. Bitcoin is pulling back from recent highs, and altcoins like Ethereum, Ripple, and others have only bled out and fallen deeper to new lows. And while most crypto investors believe there is more pain to come for the altcoin…",
"publishedAt": "2019-08-15T19:00:40.000Z",
"title": "Bitcoin and Altcoin Crashes Correlating Could Be Catalyst for Alt Bottom",
"url": "https://cryptocontrol.io/r/api/article/5d55ad8a568eb80018474c86?ref=5d532cd5568eb80018ddbb73",
"source": {
"_id": "59d71bd7ef8bf95cc2aaf579",
"name": "NewsBTC",
"url": "http://www.newsbtc.com",
"favicon": "https://assets.cryptocontrol.io/favicons/59d71bd7ef8bf95cc2aaf579.png"
},
"sourceDomain": "newsbtc.com",
"originalImageUrl": "https://www.newsbtc.com/wp-content/uploads/2019/08/altcoin-bitcoin-crypto-ethereum-ripple-shutterstock_1237760869-1200x780.jpg"
},
{
"_id": "5d55aafb568eb80018460528",
"hotness": 72495.21355273812,
"activityHotness": 0.11739533071234382,
"primaryCategory": "General",
"words": 466,
"similarArticles": [],
"coins": [
{
"_id": "59cb5a047ab17a0b2ec00edf",
"name": "Ripple",
"tradingSymbol": "xrp",
"slug": "ripple"
}
],
"description": "Ripple’s funding initiative Xpring has granted a billion XRP tokens – roughly $250M at current prices – to Coil, a new sharing and monetization platform that rewards content creators with micropayments. According to the announcement, Coil will use the grant to build out an ecosystem in which…",
"publishedAt": "2019-08-15T18:34:37.000Z",
"title": "Ripple Pumps 1bn XRP Into New Content Sharing Platform",
"url": "https://cryptocontrol.io/r/api/article/5d55aafb568eb80018460528?ref=5d532cd5568eb80018ddbb73",
"source": {
"_id": "5badd3ca0c38a70019e41912",
"name": "Crypto Briefing",
"url": "https://cryptobriefing.com/",
"favicon": "https://assets.cryptocontrol.io/favicons/5badd3ca0c38a70019e41912.png"
},
"sourceDomain": "cryptobriefing.com",
"originalImageUrl": "https://cryptobriefing.com/wp-content/uploads/2019/08/Ripple-Pumps-1bn-XRP-into-content-creation-platform.jpg"
},
{
"_id": "5d559c3e568eb800183db066",
"hotness": 72495.00903475027,
"activityHotness": 0.12070141693843262,
"primaryCategory": "Analysis",
"words": 337,
"similarArticles": [],
"coins": [
{
"_id": "59cb5a047ab17a0b2ec00edf",
"name": "Ripple",
"tradingSymbol": "xrp",
"slug": "ripple"
}
],
"description": "Ripple has announced plans to expend over $260 million in XRP to content monetization platform Coil, a content monetization firm. Ripple’s investment arm Xpring reportedly participated in a $4 million round for the startup. According to a press release, Ripple’s donation is for establishing a…",
"publishedAt": "2019-08-15T17:19:48.000Z",
"title": "Ripple Disburses One Billion XRP To Online Content Startup Coil",
"url": "https://cryptocontrol.io/r/api/article/5d559c3e568eb800183db066?ref=5d532cd5568eb80018ddbb73",
"source": {
"_id": "5adc20e7ec0af7be3539d369",
"name": "ZyCrypto",
"url": "https://zycrypto.com",
"favicon": "https://assets.cryptocontrol.io/favicons/5adc20e7ec0af7be3539d369.png"
},
"sourceDomain": "zycrypto.com",
"originalImageUrl": "https://zycrypto.com/wp-content/uploads/2019/02/Ripples-XRP-Listing-on-Coinbase-Settles-the-Issue-of-XRP-Being-a-Security-1.png"
},
{
"_id": "5d559f7c568eb800183f7098",
"hotness": 72499.31863629086,
"activityHotness": 4.64946962418361,
"primaryCategory": "Analysis",
"words": 148,
"similarArticles": [
{
"_id": "5d55898a568eb8001833a88c",
"title": "Ripple’s Xpring Gives $265 Mil in XRP to Content Platform Coil",
"publishedAt": "2019-08-15T16:25:00.000Z",
"sourceDomain": "cointelegraph.com",
"url": "https://cryptocontrol.io/r/api/article/5d55898a568eb8001833a88c?ref=5d532cd5568eb80018ddbb73"
},
{
"_id": "5d556b71568eb80018227eae",
"title": "Ripple’s Xpring Gives a One Billion XRP Grant to Coil to Increase Utility of XRP",
"publishedAt": "2019-08-15T13:50:30.000Z",
"sourceDomain": "",
"url": "https://cryptocontrol.io/r/api/article/5d556b71568eb80018227eae?ref=5d532cd5568eb80018ddbb73"
},
{
"_id": "5d558702568eb8001832459b",
"title": "Ripple Gives Away USD 263M in XRP that Lost 27% of its Value this Year",
"publishedAt": "2019-08-15T15:41:07.000Z",
"sourceDomain": "cryptonews.com",
"url": "https://cryptocontrol.io/r/api/article/5d558702568eb8001832459b?ref=5d532cd5568eb80018ddbb73"
}
],
"coins": [
{
"_id": "59cb5a047ab17a0b2ec00edf",
"name": "Ripple",
"tradingSymbol": "xrp",
"slug": "ripple"
}
],
"description": "The donation will be deployed towards driving adoption of XRP and the Interledger Protocol (ILP) by growing Coil's monetization platform.\n",
"publishedAt": "2019-08-15T16:00:54.000Z",
"title": "Ripple Donates to Coil Startup 1 Billion XRP",
"url": "https://cryptocontrol.io/r/api/article/5d559f7c568eb800183f7098?ref=5d532cd5568eb80018ddbb73",
"source": {
"_id": "5b6b761b3bda0e0010d82323",
"name": "Insider.pro EN",
"url": "https://en.insider.pro",
"favicon": "https://assets.cryptocontrol.io/favicons/5b6b761b3bda0e0010d82323.png"
},
"sourceDomain": "ihodl.com",
"originalImageUrl": "https://ihodl.com/media/articles/facebook/d/1c/d2cf581cd__800x420__q85_016750202803.jpg"
},
{
"_id": "5d5583f3568eb8001830576b",
"hotness": 72494.78364536929,
"activityHotness": 0.11906203596086498,
"primaryCategory": "Exchanges",
"words": 422,
"similarArticles": [],
"coins": [
{
"_id": "59cb5a047ab17a0b2ec00edf",
"name": "Ripple",
"tradingSymbol": "xrp",
"slug": "ripple"
}
],
"description": "Ripple Inc. has announced a weighty investment in a nascent web monetization platform Coil, created by a former Ripple’s CTO. As contained in a message, Ripple’s investment arm, Xpring, states it is partnering with Coil, and has therefore granted the platform 1 billion XRP in other to gather…",
"publishedAt": "2019-08-15T15:59:15.000Z",
"title": "Ripple Doles out 1 Billion XRP on Web Monetization Platform Coil",
"url": "https://cryptocontrol.io/r/api/article/5d5583f3568eb8001830576b?ref=5d532cd5568eb80018ddbb73",
"source": {
"_id": "5b922ec60c38a7001951cbe6",
"name": "Today's Gazette",
"url": "https://todaysgazette.com",
"favicon": "https://assets.cryptocontrol.io/favicons/5b922ec60c38a7001951cbe6.png"
},
"sourceDomain": "todaysgazette.com",
"originalImageUrl": "https://e6q4r7g2.stackpathcdn.com/wp-content/uploads/2019/07/Ripple-Regulation-in-UK.png"
},
{
"_id": "5d55858a568eb80018314c9c",
"hotness": 72494.77905743425,
"activityHotness": 0.12151113796169455,
"primaryCategory": "General",
"words": 272,
"similarArticles": [],
"coins": [
{
"_id": "59cb59f9b0836b0a63aebc7c",
"name": "Ethereum",
"tradingSymbol": "eth",
"slug": "ethereum"
},
{
"_id": "59cb59e81c073f09e76f614b",
"name": "Bitcoin",
"slug": "bitcoin",
"tradingSymbol": "btc"
},
{
"_id": "59cb5a047ab17a0b2ec00edf",
"name": "Ripple",
"tradingSymbol": "xrp",
"slug": "ripple"
}
],
"description": "The crypto maket looks shaky as many coins suffer double digit losses.",
"publishedAt": "2019-08-15T15:56:43.000Z",
"title": "Ethereum falls below $200 in sea of red",
"url": "https://cryptocontrol.io/r/api/article/5d55858a568eb80018314c9c?ref=5d532cd5568eb80018ddbb73",
"source": {
"_id": "5badd2e80c38a70019e35b97",
"name": "Decrypt Media",
"url": "https://decryptmedia.com/",
"favicon": "https://assets.cryptocontrol.io/favicons/5badd2e80c38a70019e35b97.jpg"
},
"sourceDomain": "decrypt.co",
"originalImageUrl": "https://screenshot.dmedia.cloud/capture/aHR0cHM6Ly9kZWNyeXB0bWVkaWEuY29tL3NjcmVlbnNob3QvcG9zdC84NDE4Lz9zZWxlY3Rvcj0ucG9zdENhcmQtU3R5bGVkQ2FyZCZoZWlnaHQ9NDcwcHgmd2lkdGg9OTAwcHg=.png"
},
{
"_id": "5d5576c0568eb800182905bf",
"hotness": 72494.65978770015,
"activityHotness": 0.1418710334858185,
"primaryCategory": "General",
"words": 432,
"similarArticles": [],
"coins": [
{
"_id": "59cb5a047ab17a0b2ec00edf",
"name": "Ripple",
"tradingSymbol": "xrp",
"slug": "ripple"
}
],
"description": "Peter Brandt, a professional crypto trader, has called on XRP’s doomsday. According to Brandt in a tweet on August 14, 2019, if XRP fails to trade above $0.24, then nothing is stopping it from sinking to $0.020725. On the other hand, loyal holders of XRP, the third-largest asset by market cap have…",
"publishedAt": "2019-08-15T15:06:27.000Z",
"title": "Ripple Needs To Keep ‘Manipulating’ The Price Of XRP To Prevent It Crashing To $0.02, Peter Brandt Opines",
"url": "https://cryptocontrol.io/r/api/article/5d5576c0568eb800182905bf?ref=5d532cd5568eb80018ddbb73",
"source": {
"_id": "5adc20e7ec0af7be3539d369",
"name": "ZyCrypto",
"url": "https://zycrypto.com",
"favicon": "https://assets.cryptocontrol.io/favicons/5adc20e7ec0af7be3539d369.png"
},
"sourceDomain": "zycrypto.com",
"originalImageUrl": "https://zycrypto.com/wp-content/uploads/2018/12/Binance-Ready-to-Open-Trading-of-Two-Pairs-Using-Ripple-XRP-as-the-Quote-Currency.png"
},
{
"_id": "5d557509568eb800182805e7",
"hotness": 72494.60573215569,
"activityHotness": 0.11823215567939548,
"primaryCategory": "Analysis",
"words": 541,
"similarArticles": [],
"coins": [
{
"_id": "59cb5a047ab17a0b2ec00edf",
"name": "Ripple",
"tradingSymbol": "xrp",
"slug": "ripple"
}
],
"description": "XRP saw a very sharp decrease of around 10% over the past 24 hours, bringing its the price beneath the 2019 strong support at $0.30 to reach where it is currently trading at $0.2598. The decline is perhaps reactive to Bitcoin’s plunge today. XRP remains the third-largest cryptocurrency with a…",
"publishedAt": "2019-08-15T14:55:30.000Z",
"title": "Ripple Price Analysis: XRP Plumets Below $0.30, New 2019 Low Coming Up?",
"url": "https://cryptocontrol.io/r/api/article/5d557509568eb800182805e7?ref=5d532cd5568eb80018ddbb73",
"source": {
"_id": "5ce406880175730010f47558",
"name": "Crypto Potato",
"url": "https://cryptopotato.com/",
"favicon": "https://assets.cryptocontrol.io/favicons/5ce406880175730010f47558.png"
},
"sourceDomain": "cryptopotato.com",
"originalImageUrl": "https://cryptopotato.com/wp-content/uploads/2019/01/ripple_xrp_cover.jpg"
},
{
"_id": "5d556cf8568eb80018236070",
"hotness": 72494.45397289643,
"activityHotness": 0.11823215567939548,
"primaryCategory": "General",
"words": 427,
"similarArticles": [],
"coins": [
{
"_id": "59d21e9b83a0523906a45de2",
"name": "Civic",
"slug": "civic",
"tradingSymbol": "cvc"
},
{
"_id": "59cb59e81c073f09e76f614b",
"name": "Bitcoin",
"slug": "bitcoin",
"tradingSymbol": "btc"
},
{
"_id": "59cb5a047ab17a0b2ec00edf",
"name": "Ripple",
"tradingSymbol": "xrp",
"slug": "ripple"
}
],
"description": "Bitcoin does not have a wealth distribution problem after all, another expert has said as the debate continues to mushroom within the industry. BTC Ownership ‘Seems Balanced’ In a tweet August 15, Gabor Gurbacs, digital asset strategist and director at investment management giant VanEck, took claims…",
"publishedAt": "2019-08-15T14:00:52.000Z",
"title": "Bitcoin Wealth Centralization Is A Myth, Says VanEck Strategist",
"url": "https://cryptocontrol.io/r/api/article/5d556cf8568eb80018236070?ref=5d532cd5568eb80018ddbb73",
"source": {
"_id": "59d8e471ef8bf95cc2c16858",
"name": "Bitcoinist",
"url": "https://bitcoinist.com",
"favicon": "https://assets.cryptocontrol.io/favicons/59d8e471ef8bf95cc2c16858.png"
},
"sourceDomain": "bitcoinist.com",
"originalImageUrl": "https://bitcoinist.com/wp-content/uploads/2019/08/gabor-gurbacs__25528-e1565873338451.jpeg"
},
{
"_id": "5d5567e7568eb8001820b561",
"hotness": 72498.97763621493,
"activityHotness": 4.654812140850969,
"primaryCategory": "Analysis",
"words": 634,
"similarArticles": [
{
"_id": "5d546c24568eb80018941073",
"title": "XRP Massively Falls Amid New Lawsuit Claiming The Digital Asset Is An Unregistered Security",
"publishedAt": "2019-08-14T19:43:35.000Z",
"sourceDomain": "usethebitcoin.com",
"url": "https://cryptocontrol.io/r/api/article/5d546c24568eb80018941073?ref=5d532cd5568eb80018ddbb73"
},
{
"_id": "5d542720568eb800186bd351",
"title": "Twitter Post is Evidence: New Lawsuit Filed Against Ripple",
"publishedAt": "2019-08-14T14:44:36.000Z",
"sourceDomain": "todaysgazette.com",
"url": "https://cryptocontrol.io/r/api/article/5d542720568eb800186bd351?ref=5d532cd5568eb80018ddbb73"
},
{
"_id": "5d5420ba568eb80018683533",
"title": "XRP Class Action turns new SEC directives on Ripple and Brad Garlinghouse",
"publishedAt": "2019-08-14T14:50:39.000Z",
"sourceDomain": "",
"url": "https://cryptocontrol.io/r/api/article/5d5420ba568eb80018683533?ref=5d532cd5568eb80018ddbb73"
},
{
"_id": "5d53f363568eb800184e6580",
"title": "Ripple Faces Another Lawsuit from Investors Claiming XRP Is an Unregistered...",
"publishedAt": "2019-08-14T11:07:54.000Z",
"sourceDomain": "coinspeaker.com",
"url": "https://cryptocontrol.io/r/api/article/5d53f363568eb800184e6580?ref=5d532cd5568eb80018ddbb73"
},
{
"_id": "5d53e4fc568eb80018461dad",
"title": "SEC Delays Decision on Bitcoin ETFs Again",
"publishedAt": "2019-08-14T09:08:11.000Z",
"sourceDomain": "insidebitcoins.com",
"url": "https://cryptocontrol.io/r/api/article/5d53e4fc568eb80018461dad?ref=5d532cd5568eb80018ddbb73"
},
{
"_id": "5d53a4ec568eb80018209c32",
"title": "This Cryptocurrency Plunges 75% Over SEC Security View – Is Ripple’s XRP Next?",
"publishedAt": "2019-08-14T05:39:40.000Z",
"sourceDomain": "coingape.com",
"url": "https://cryptocontrol.io/r/api/article/5d53a4ec568eb80018209c32?ref=5d532cd5568eb80018ddbb73"
},
{
"_id": "5d53475f568eb80018ec6a55",
"title": "Hard Nuts for Ripple? XRP “Unregistered Security” Legal Battle Takes New Turn",
"publishedAt": "2019-08-13T23:26:51.000Z",
"sourceDomain": "coinfomania.com",
"url": "https://cryptocontrol.io/r/api/article/5d53475f568eb80018ec6a55?ref=5d532cd5568eb80018ddbb73"
}
],
"coins": [
{
"_id": "59cb5a047ab17a0b2ec00edf",
"name": "Ripple",
"tradingSymbol": "xrp",
"slug": "ripple"
},
{
"_id": "59d21e9b83a0523906a45dbe",
"name": "Tether",
"slug": "tether",
"tradingSymbol": "usdt"
}
],
"description": "XRP and other digital currencies in the cryptocurrency space have been experiencing notable price plummet over the past 48 hours. It has quite been devastating for the majority of cryptocurrencies, including XRP and Bitcoin. Peter Brandt, a popular and experienced trader in the crypto space has…",
"publishedAt": "2019-08-15T13:56:13.000Z",
"title": "Veteran Peter Brandt Accuses Ripple of Market Manipulation, Expects Further XRP Price Drop",
"url": "https://cryptocontrol.io/r/api/article/5d5567e7568eb8001820b561?ref=5d532cd5568eb80018ddbb73",
"source": {
"_id": "5b922ec60c38a7001951cbe6",
"name": "Today's Gazette",
"url": "https://todaysgazette.com",
"favicon": "https://assets.cryptocontrol.io/favicons/5b922ec60c38a7001951cbe6.png"
},
"sourceDomain": "todaysgazette.com",
"originalImageUrl": "https://e6q4r7g2.stackpathcdn.com/wp-content/uploads/2019/07/Ripples-XRP.png"
},
{
"_id": "5d5560e3568eb800181cbc3b",
"hotness": 72497.38508194916,
"activityHotness": 3.1559615787935424,
"primaryCategory": "Exchanges",
"words": 976,
"similarArticles": [
{
"_id": "5d542720568eb800186bd351",
"title": "Twitter Post is Evidence: New Lawsuit Filed Against Ripple",
"publishedAt": "2019-08-14T14:44:36.000Z",
"sourceDomain": "todaysgazette.com",
"url": "https://cryptocontrol.io/r/api/article/5d542720568eb800186bd351?ref=5d532cd5568eb80018ddbb73"
},
{
"_id": "5d5422f5568eb8001869547b",
"title": "Case Against Ripple Toughens as SEC may “Hammer” XRP",
"publishedAt": "2019-08-14T14:26:52.000Z",
"sourceDomain": "zycrypto.com",
"url": "https://cryptocontrol.io/r/api/article/5d5422f5568eb8001869547b?ref=5d532cd5568eb80018ddbb73"
}
],
"coins": [
{
"_id": "59cb5a047ab17a0b2ec00edf",
"name": "Ripple",
"tradingSymbol": "xrp",
"slug": "ripple"
},
{
"_id": "59cb59e81c073f09e76f614b",
"name": "Bitcoin",
"slug": "bitcoin",
"tradingSymbol": "btc"
},
{
"_id": "59d21e9b83a0523906a45de5",
"name": "Status",
"slug": "status",
"tradingSymbol": "snt"
},
{
"_id": "59cb59f9b0836b0a63aebc7c",
"name": "Ethereum",
"tradingSymbol": "eth",
"slug": "ethereum"
}
],
"description": "A new update to the Ripple XRP lawsuit has turned it into the illegal trading case after the initial draft submitted in the honorable court following the old Security Exchange Commission guidelines. The lawsuit was initially filed in the May of 2018 where the investor Bradley Sostak initiated a…",
"publishedAt": "2019-08-15T13:22:29.000Z",
"title": "Ripple XRP lawsuit turns into illegal trading case? SEC guidelines quoted",
"url": "https://cryptocontrol.io/r/api/article/5d5560e3568eb800181cbc3b?ref=5d532cd5568eb80018ddbb73",
"source": {
"_id": "5bda96120c38a7001984d502",
"name": "Cryptopolitan",
"url": "https://www.cryptopolitan.com/",
"favicon": "https://assets.cryptocontrol.io/favicons/5bda96120c38a7001984d502.png"
},
"sourceDomain": "cryptopolitan.com",
"originalImageUrl": "https://cdn.cryptopolitan.com/wp-content/uploads/2019/08/ripple-xrp-lawsuit-turns-illegal-trading-case.jpg"
},
{
"_id": "5d555a7a568eb8001818fdd6",
"hotness": 72494.287246197,
"activityHotness": 0.11988508587451652,
"primaryCategory": "Analysis",
"words": 684,
"similarArticles": [],
"coins": [
{
"_id": "59cb5a047ab17a0b2ec00edf",
"name": "Ripple",
"tradingSymbol": "xrp",
"slug": "ripple"
}
],
"description": "Ripple is making a major investment in Coil, a media platform that pays content creators XRP.",
"publishedAt": "2019-08-15T13:00:15.000Z",
"title": "Ripple Is Giving Away 1 Billion XRP in Massive Bid to Fund Online Content",
"url": "https://cryptocontrol.io/r/api/article/5d555a7a568eb8001818fdd6?ref=5d532cd5568eb80018ddbb73",
"source": {
"_id": "59ce11393a44cf289a9a71f5",
"name": "CoinDesk",
"url": "http://coindesk.com",
"favicon": "https://assets.cryptocontrol.io/favicons/59ce11393a44cf289a9a71f5.png"
},
"sourceDomain": "coindesk.com",
"originalImageUrl": "https://www.coindesk.com/wp-content/uploads/2018/06/Construct-2017-Innovation-Hanger-SF-Jan-3031-2017-Steven-Gregory-Photography-6128_preview-e1528246992307-150x150.jpg"
},
{
"_id": "5d555102568eb800181366cc",
"hotness": 72494.09994465896,
"activityHotness": 0.14054651081081646,
"primaryCategory": "Blockchain",
"words": 416,
"similarArticles": [],
"coins": [
{
"_id": "59cb59e81c073f09e76f614b",
"name": "Bitcoin",
"slug": "bitcoin",
"tradingSymbol": "btc"
},
{
"_id": "59cb59f9b0836b0a63aebc7c",
"name": "Ethereum",
"tradingSymbol": "eth",
"slug": "ethereum"
},
{
"_id": "59d21e9b83a0523906a45daf",
"name": "Bitcoin Cash",
"slug": "bitcoin-cash",
"tradingSymbol": "bch"
},
{
"_id": "59d21e9b83a0523906a45db0",
"name": "Litecoin",
"slug": "litecoin",
"tradingSymbol": "ltc"
},
{
"_id": "59cb5a047ab17a0b2ec00edf",
"name": "Ripple",
"tradingSymbol": "xrp",
"slug": "ripple"
}
],
"description": "As Bitcoin sees the third day of red values, the cryptocurrency market continues to struggle to regain values.\n",
"publishedAt": "2019-08-15T11:45:23.000Z",
"title": "Top cryptos down again, with Ripple losing nearly 10% for the day",
"url": "https://cryptocontrol.io/r/api/article/5d555102568eb800181366cc?ref=5d532cd5568eb80018ddbb73",
"source": {
"_id": "5ac5f375ec0af7be35314264",
"name": "Coin Insider",
"url": "https://www.coininsider.com",
"favicon": "https://assets.cryptocontrol.io/favicons/5ac5f375ec0af7be35314264.jpg"
},
"sourceDomain": "coininsider.com",
"originalImageUrl": "https://www.coininsider.com/wp-content/uploads/2018/10/bear-market-1200x630.jpg"
},
{
"_id": "5d5535e1568eb8001804b244",
"hotness": 72493.85227897776,
"activityHotness": 0.13001045924503382,
"primaryCategory": "General",
"words": 329,
"similarArticles": [],
"coins": [
{
"_id": "59cb59e81c073f09e76f614b",
"name": "Bitcoin",
"slug": "bitcoin",
"tradingSymbol": "btc"
},
{
"_id": "59cb59f9b0836b0a63aebc7c",
"name": "Ethereum",
"tradingSymbol": "eth",
"slug": "ethereum"
},
{
"_id": "59cb5a047ab17a0b2ec00edf",
"name": "Ripple",
"tradingSymbol": "xrp",
"slug": "ripple"
}
],
"description": "New Zealand is pushing the boundaries on digital currency. The sovereign island country in the southwest Pacific Ocean has deemed it legal for employers to pay their employees in crypto-assets, such as Bitcoin (BTC), bringing the controversial currency further into the realm of everyday payment…",
"publishedAt": "2019-08-15T10:20:01.000Z",
"title": "New Zealand Gives Bitcoin a Vote of Confidence",
"url": "https://cryptocontrol.io/r/api/article/5d5535e1568eb8001804b244?ref=5d532cd5568eb80018ddbb73",
"source": {
"_id": "5af1c9d401aed341ae236047",
"name": "CoinDoo",
"url": "https://coindoo.com",
"favicon": "https://assets.cryptocontrol.io/favicons/5af1c9d401aed341ae236047.png"
},
"sourceDomain": "coindoo.com",
"originalImageUrl": "https://coindoo.com/wp-content/uploads/2019/06/market-cap.jpg"
},
{
"_id": "5d5528bc568eb80018fd8f62",
"hotness": 72493.75434378149,
"activityHotness": 0.15364933705145686,
"primaryCategory": "Exchanges",
"words": 586,
"similarArticles": [],
"coins": [
{
"_id": "59cb59e81c073f09e76f614b",
"name": "Bitcoin",
"slug": "bitcoin",
"tradingSymbol": "btc"
},
{
"_id": "59cb59f9b0836b0a63aebc7c",
"name": "Ethereum",
"tradingSymbol": "eth",
"slug": "ethereum"
},
{
"_id": "59d21e9b83a0523906a45db6",
"name": "Ethereum Classic",
"slug": "ethereum-classic",
"tradingSymbol": "etc"
},
{
"_id": "59cb5a047ab17a0b2ec00edf",
"name": "Ripple",
"tradingSymbol": "xrp",
"slug": "ripple"
},
{
"_id": "59d21e9b83a0523906a45daf",
"name": "Bitcoin Cash",
"slug": "bitcoin-cash",
"tradingSymbol": "bch"
}
],
"description": "With so many cryptocurrency exchanges now offering margin trading, it may be difficult to know where to start. Luckily, we’ve compiled a list of the top options for crypto traders looking to multiply their gains. Margin trading is an extremely risky (but also very lucrative) way to trade…",
"publishedAt": "2019-08-15T09:36:15.000Z",
"title": "The Top 5 Cryptocurrency Exchanges for Margin Trading",
"url": "https://cryptocontrol.io/r/api/article/5d5528bc568eb80018fd8f62?ref=5d532cd5568eb80018ddbb73",
"source": {
"_id": "5b964b640c38a70019787e71",
"name": "BeInCrypto",
"url": "https://beincrypto.com",
"favicon": "https://assets.cryptocontrol.io/favicons/5b964b640c38a70019787e71.jpg"
},
"sourceDomain": "beincrypto.com",
"originalImageUrl": "https://beincrypto.com/wp-content/uploads/2019/08/bic_Top_Best_Cryptocurrency_Exchanges.jpg"
},
{
"_id": "5d5524ff568eb80018fb7ec8",
"hotness": 72493.6371367482,
"activityHotness": 0.1343589704390077,
"primaryCategory": "Analysis",
"words": 338,
"similarArticles": [],
"coins": [
{
"_id": "59cb5a047ab17a0b2ec00edf",
"name": "Ripple",
"tradingSymbol": "xrp",
"slug": "ripple"
},
{
"_id": "5a7b931102ac032bc99781f1",
"name": "DATA",
"slug": "data",
"tradingSymbol": "dta"
},
{
"_id": "59d21e9b83a0523906a45f2b",
"name": "Altcoin",
"slug": "altcoin-alt",
"tradingSymbol": "alt"
},
{
"_id": "59cb59e81c073f09e76f614b",
"name": "Bitcoin",
"slug": "bitcoin",
"tradingSymbol": "btc"
}
],
"description": "Peter Brandt joins critics of the third-largest altcoin, which currently trades at two-year lows against Bitcoin.\nAltcoin XRP has received fresh claims its price is artificially high as a well-known cryptocurrency trader warns of serious losses. \nBrandt: Ripple manipulated XRP for years\nIn a series…",
"publishedAt": "2019-08-15T09:01:00.000Z",
"title": "XRP Could Fall 20% Says Trader Accusing Ripple of Manipulating Market",
"url": "https://cryptocontrol.io/r/api/article/5d5524ff568eb80018fb7ec8?ref=5d532cd5568eb80018ddbb73",
"source": {
"_id": "59d70be3ef8bf95cc2aa2b4f",
"name": "CoinTelegraph",
"url": "https://cointelegraph.com/",
"favicon": "https://assets.cryptocontrol.io/favicons/59d70be3ef8bf95cc2aa2b4f.png"
},
"sourceDomain": "cointelegraph.com",
"originalImageUrl": "https://images.cointelegraph.com/images/740_aHR0cHM6Ly9zMy5jb2ludGVsZWdyYXBoLmNvbS9zdG9yYWdlL3VwbG9hZHMvdmlldy8xMjUzOWJmZmQwZGY1NjY5YjU5M2YyNGQwNTYyZTRiZS5qcGc=.jpg"
},
{
"_id": "5d552274568eb80018f9ffa9",
"hotness": 72493.61985843715,
"activityHotness": 0.15481214085096875,
"primaryCategory": "General",
"words": 553,
"similarArticles": [],
"coins": [
{
"_id": "59cb59e81c073f09e76f614b",
"name": "Bitcoin",
"slug": "bitcoin",
"tradingSymbol": "btc"
},
{
"_id": "59d21e9b83a0523906a45daf",
"name": "Bitcoin Cash",
"slug": "bitcoin-cash",
"tradingSymbol": "bch"
},
{
"_id": "59cb5a047ab17a0b2ec00edf",
"name": "Ripple",
"tradingSymbol": "xrp",
"slug": "ripple"
},
{
"_id": "59cb59f9b0836b0a63aebc7c",
"name": "Ethereum",
"tradingSymbol": "eth",
"slug": "ethereum"
},
{
"_id": "59d21e9b83a0523906a45db0",
"name": "Litecoin",
"slug": "litecoin",
"tradingSymbol": "ltc"
},
{
"_id": "59d21e9b83a0523906a45dc5",
"name": "EOS",
"slug": "eos",
"tradingSymbol": "eos"
}
],
"description": "This week, we saw a steady decline in bitcoin price below the USD 11,200 and USD 11,000 support levels. Yesterday, we discussed the chances of bearish continuation below the USD 10,500 support area. BTC/USD did move down and fell significantly below the USD 10,000 support. Also, altcoins failed to…",
"publishedAt": "2019-08-15T08:47:25.000Z",
"title": "Bitcoin and Altcoins Breakdown Could Trigger Additional Losses",
"url": "https://cryptocontrol.io/r/api/article/5d552274568eb80018f9ffa9?ref=5d532cd5568eb80018ddbb73",
"source": {
"_id": "5c8fbb44a4410000111f614b",
"name": "CryptoNews",
"url": "https://cryptonews.com/",
"favicon": "https://assets.cryptocontrol.io/favicons/5c8fbb44a4410000111f614b.png"
},
"sourceDomain": "cryptonews.com",
"originalImageUrl": "https://cimg.co/w/articles/0/5d5/51c3b1a8b6.png"
},
{
"_id": "5d550f73568eb80018ef2a7c",
"hotness": 72493.36658453333,
"activityHotness": 0.13001045924503382,
"primaryCategory": "Analysis",
"words": 374,
"similarArticles": [],
"coins": [
{
"_id": "59cb5a047ab17a0b2ec00edf",
"name": "Ripple",
"tradingSymbol": "xrp",
"slug": "ripple"
}
],
"description": "Ripple and XRP have been in the spotlight a lot this year, and the two entities were mainly surrounded by positive news. The San Francisco-based company managed to achieve a lot of important partnership, while at the same time, boosting their products. It also made sure to support the entire XRP…",
"publishedAt": "2019-08-15T07:25:10.000Z",
"title": "XRP Lawsuit: Ripple Is Forced To Respond By September – Is XRP A Security?",
"url": "https://cryptocontrol.io/r/api/article/5d550f73568eb80018ef2a7c?ref=5d532cd5568eb80018ddbb73",
"source": {
"_id": "5bac83ff0c38a70019d8ffd9",
"name": "Oracle Times",
"url": "https://oracletimes.com/",
"favicon": "https://assets.cryptocontrol.io/favicons/5bac83ff0c38a70019d8ffd9.png"
},
"sourceDomain": "oracletimes.com",
"originalImageUrl": "https://i0.wp.com/oracletimes.com/wp-content/uploads/2019/07/xrgeeqfwsasdrse.png?fit=810%2C475&ssl=1"
},
{
"_id": "5d54f0aa568eb80018ddf512",
"hotness": 72493.10684897624,
"activityHotness": 0.1883767540168595,
"primaryCategory": "Analysis",
"words": 361,
"similarArticles": [],
"coins": [
{
"_id": "59cb59e81c073f09e76f614b",
"name": "Bitcoin",
"slug": "bitcoin",
"tradingSymbol": "btc"
},
{
"_id": "59d21e9b83a0523906a45f2b",
"name": "Altcoin",
"slug": "altcoin-alt",
"tradingSymbol": "alt"
},
{
"_id": "59d21e9b83a0523906a45daf",
"name": "Bitcoin Cash",
"slug": "bitcoin-cash",
"tradingSymbol": "bch"
},
{
"_id": "59d21e9b83a0523906a45dbe",
"name": "Tether",
"slug": "tether",