forked from VolumeFi/trading-bots
-
Notifications
You must be signed in to change notification settings - Fork 0
/
exchanges.json
1402 lines (1402 loc) · 63.5 KB
/
exchanges.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": "binance",
"name": "Binance",
"year_established": 2017,
"country": "Cayman Islands",
"description": "",
"url": "https://www.binance.com/",
"image": "https://assets.coingecko.com/markets/images/52/small/binance.jpg?1519353250",
"has_trading_incentive": false,
"trust_score": 10,
"trust_score_rank": 1,
"trade_volume_24h_btc": 342570.6568534568,
"trade_volume_24h_btc_normalized": 306528.81415642565
},
{
"id": "gdax",
"name": "Coinbase Exchange",
"year_established": 2012,
"country": "United States",
"description": "",
"url": "https://www.coinbase.com",
"image": "https://assets.coingecko.com/markets/images/23/small/Coinbase_Coin_Primary.png?1621471875",
"has_trading_incentive": false,
"trust_score": 10,
"trust_score_rank": 2,
"trade_volume_24h_btc": 40652.79131636513,
"trade_volume_24h_btc_normalized": 40652.79131636513
},
{
"id": "kraken",
"name": "Kraken",
"year_established": 2011,
"country": "United States",
"description": "",
"url": "https://r.kraken.com/c/2223866/687155/10583",
"image": "https://assets.coingecko.com/markets/images/29/small/kraken.jpg?1584251255",
"has_trading_incentive": false,
"trust_score": 10,
"trust_score_rank": 3,
"trade_volume_24h_btc": 24795.141013457483,
"trade_volume_24h_btc_normalized": 24380.76379919951
},
{
"id": "kucoin",
"name": "KuCoin",
"year_established": 2014,
"country": "Seychelles",
"description": "",
"url": "https://www.kucoin.com/",
"image": "https://assets.coingecko.com/markets/images/61/small/kucoin.png?1640584259",
"has_trading_incentive": false,
"trust_score": 10,
"trust_score_rank": 4,
"trade_volume_24h_btc": 23705.671052483987,
"trade_volume_24h_btc_normalized": 23705.671052483987
},
{
"id": "bybit_spot",
"name": "Bybit",
"year_established": 2018,
"country": "British Virgin Islands",
"description": "Bybit is a cryptocurrency exchange that offers a professional platform featuring an ultra-fast matching engine, excellent customer service and multilingual community support for crypto traders of all levels. Established in March 2018, Bybit currently serves more than 10 million users and institutions offering access to over 100 assets and contracts across Spot, Futures and Options, launchpad projects, earn products, an NFT Marketplace and more. Bybit is a proud partner of Formula One racing team, Oracle Red Bull Racing, esports teams NAVI, Astralis, Alliance, Virtus.pro, Made in Brazil (MIBR), City Esports, and Oracle Red Bull Racing Esports, and association football (soccer) teams Borussia Dortmund and Avispa Fukuoka.",
"url": "https://www.bybit.com",
"image": "https://assets.coingecko.com/markets/images/698/small/bybit_spot.png?1629971794",
"has_trading_incentive": false,
"trust_score": 10,
"trust_score_rank": 5,
"trade_volume_24h_btc": 19896.643704193044,
"trade_volume_24h_btc_normalized": 19896.643704193044
},
{
"id": "huobi",
"name": "Huobi",
"year_established": 2013,
"country": "Seychelles",
"description": "",
"url": "https://www.huobi.com",
"image": "https://assets.coingecko.com/markets/images/25/small/logo_V_colour_black.png?1669177364",
"has_trading_incentive": false,
"trust_score": 10,
"trust_score_rank": 6,
"trade_volume_24h_btc": 16170.710464672264,
"trade_volume_24h_btc_normalized": 16170.710464672264
},
{
"id": "binance_us",
"name": "Binance US",
"year_established": 2019,
"country": "United States",
"description": "",
"url": "https://www.binance.us/",
"image": "https://assets.coingecko.com/markets/images/469/small/Binance.png?1568875842",
"has_trading_incentive": false,
"trust_score": 10,
"trust_score_rank": 7,
"trade_volume_24h_btc": 19308.718649597762,
"trade_volume_24h_btc_normalized": 10609.69739877352
},
{
"id": "bitfinex",
"name": "Bitfinex",
"year_established": 2014,
"country": "British Virgin Islands",
"description": "",
"url": "https://www.bitfinex.com",
"image": "https://assets.coingecko.com/markets/images/4/small/BItfinex.png?1615895883",
"has_trading_incentive": false,
"trust_score": 10,
"trust_score_rank": 8,
"trade_volume_24h_btc": 7791.8531020056425,
"trade_volume_24h_btc_normalized": 7791.8531020056425
},
{
"id": "mxc",
"name": "MEXC Global",
"year_established": 2018,
"country": "Seychelles",
"description": "Established in April 2018, MEXC Global is one of the world’s leading digital-asset trading platforms. The core team comes from world-class enterprises and financial companies with rich experience in blockchain and financial industries.",
"url": "https://www.mexc.com/",
"image": "https://assets.coingecko.com/markets/images/409/small/MEXC_logo_square.jpeg?1673000123",
"has_trading_incentive": false,
"trust_score": 9,
"trust_score_rank": 9,
"trade_volume_24h_btc": 39428.368346140756,
"trade_volume_24h_btc_normalized": 39428.368346140756
},
{
"id": "okex",
"name": "OKX",
"year_established": 2017,
"country": "Seychelles",
"description": "",
"url": "https://www.okx.com",
"image": "https://assets.coingecko.com/markets/images/96/small/WeChat_Image_20220117220452.png?1642428377",
"has_trading_incentive": false,
"trust_score": 9,
"trust_score_rank": 10,
"trade_volume_24h_btc": 36141.201162818594,
"trade_volume_24h_btc_normalized": 36141.201162818594
},
{
"id": "gate",
"name": "Gate.io",
"year_established": null,
"country": "Cayman Islands",
"description": "Gate was established in 2013, and it is the top 10 exchanges in the world in terms of authentic trading volume. It is also the first choice of over 8 million registered customers, covering 130+ countries worldwide, as we are providing the most comprehensive digital asset solutions.",
"url": "https://gate.io/",
"image": "https://assets.coingecko.com/markets/images/60/small/gate_io_logo1.jpg?1654596784",
"has_trading_incentive": false,
"trust_score": 9,
"trust_score_rank": 11,
"trade_volume_24h_btc": 27797.036800712864,
"trade_volume_24h_btc_normalized": 27797.036800712864
},
{
"id": "bitget",
"name": "Bitget",
"year_established": 2018,
"country": "Seychelles",
"description": "",
"url": "https://www.bitget.com/",
"image": "https://assets.coingecko.com/markets/images/540/small/Bitget_new_logo_2.png?1630049618",
"has_trading_incentive": false,
"trust_score": 9,
"trust_score_rank": 12,
"trade_volume_24h_btc": 22162.45282224554,
"trade_volume_24h_btc_normalized": 22162.45282224554
},
{
"id": "bingx",
"name": "BingX",
"year_established": 2018,
"country": "United States",
"description": "Founded in 2018, BingX is a crypto social trading exchange that offers spot, derivatives and copy trading services to more than 100 countries worldwide.\r\n\r\nBingX prides itself as the people's exchange by unlocking the fast-growing cryptocurrency market for everyone, connecting users with experts traders and a platform to invest in a simple, engaging and transparent way.",
"url": "https://bingx.com/",
"image": "https://assets.coingecko.com/markets/images/812/small/YtFwQwJr_400x400.jpg?1646056092",
"has_trading_incentive": false,
"trust_score": 9,
"trust_score_rank": 13,
"trade_volume_24h_btc": 16976.579654836994,
"trade_volume_24h_btc_normalized": 16976.579654836994
},
{
"id": "crypto_com",
"name": "Crypto.com Exchange",
"year_established": 2019,
"country": "Malta",
"description": "Crypto.com Exchange is the best place to trade crypto, with deep liquidity, low fees and best execution prices, users can trade major cryptocurrencies like Bitcoin, Ethereum, and many more and receive great CRO-powered rewards",
"url": "https://crypto.com/exchange",
"image": "https://assets.coingecko.com/markets/images/589/small/h2oMjPp6_400x400.jpg?1669699705",
"has_trading_incentive": false,
"trust_score": 9,
"trust_score_rank": 14,
"trade_volume_24h_btc": 4828.0078862347655,
"trade_volume_24h_btc_normalized": 4828.0078862347655
},
{
"id": "phemex",
"name": "Phemex",
"year_established": 2019,
"country": "Singapore",
"description": "Launched in 2019, Phemex is a Singapore-based cryptocurrency and derivatives trading platform led by former Morgan Stanley executives. Serving around 5 million active users in over 200 countries, Phemex supports 150+ trading pairs with up to 100x leverage.\r\n\r\n- Fee Structure: 0.1% for both maker and taker\r\n- Contract Fee Structure: 0.01% for maker and 0.06% for taker\r\n- Up to $100 Welcome Bonus for new users\r\n- Earn up to 8.5% APY interest income on crypto assets\r\n- Free academy with 450+ carefully curated articles about crypto & trading\r\n- Security: Hierarchical Deterministic Cold Wallet System with 2-level human scrutiny offline signatures.",
"url": "https://phemex.com/",
"image": "https://assets.coingecko.com/markets/images/564/small/Phemex_logo_4.png?1641357471",
"has_trading_incentive": false,
"trust_score": 9,
"trust_score_rank": 15,
"trade_volume_24h_btc": 3884.980206450725,
"trade_volume_24h_btc_normalized": 3884.980206450725
},
{
"id": "gemini",
"name": "Gemini",
"year_established": 2014,
"country": "United States",
"description": "",
"url": "https://www.gemini.com/exchange",
"image": "https://assets.coingecko.com/markets/images/50/small/gemini.png?1605704107",
"has_trading_incentive": false,
"trust_score": 9,
"trust_score_rank": 16,
"trade_volume_24h_btc": 1159.1381317683865,
"trade_volume_24h_btc_normalized": 1159.1381317683865
},
{
"id": "lbank",
"name": "LBank",
"year_established": 2015,
"country": "British Virgin Islands",
"description": "LBank is a globally based centralized exchange (CEX) platform established in 2015. The platform allows users to buy and sell major crypto assets like Bitcoin (BTC) and Ethereum (ETH) in over 149 fiat currencies, with over 20 payment methods. The company has licenses from the National Futures Association, Italian Organismo degli Agenti e dei Mediatori, and money services businesses in the United States & Canada. The LBank exchange has over 9 million users and accepts clients from over 200 regions.\r\nLBank Exchange provides its users with crypto trading, specialized financial derivatives, and professional asset management services.\r\n ",
"url": "www.lbank.com",
"image": "https://assets.coingecko.com/markets/images/118/small/LBank_logo.png?1666234663",
"has_trading_incentive": false,
"trust_score": 8,
"trust_score_rank": 17,
"trade_volume_24h_btc": 49505.40230886968,
"trade_volume_24h_btc_normalized": 49370.9272989582
},
{
"id": "upbit",
"name": "Upbit",
"year_established": 2017,
"country": "South Korea",
"description": "",
"url": "https://upbit.com",
"image": "https://assets.coingecko.com/markets/images/117/small/upbit.png?1520388800",
"has_trading_incentive": false,
"trust_score": 8,
"trust_score_rank": 18,
"trade_volume_24h_btc": 57653.84747359478,
"trade_volume_24h_btc_normalized": 34909.578088288996
},
{
"id": "bitmart",
"name": "BitMart",
"year_established": 2017,
"country": "Cayman Islands",
"description": "",
"url": "https://www.bitmart.com/en",
"image": "https://assets.coingecko.com/markets/images/239/small/Bitmart.png?1628066397",
"has_trading_incentive": false,
"trust_score": 8,
"trust_score_rank": 19,
"trade_volume_24h_btc": 24830.734446234033,
"trade_volume_24h_btc_normalized": 24830.734446234033
},
{
"id": "whitebit",
"name": "WhiteBIT",
"year_established": 2018,
"country": "Lithuania",
"description": "",
"url": "https://whitebit.com",
"image": "https://assets.coingecko.com/markets/images/418/small/whitebit_final.png?1667923522",
"has_trading_incentive": false,
"trust_score": 8,
"trust_score_rank": 20,
"trade_volume_24h_btc": 17787.20951531681,
"trade_volume_24h_btc_normalized": 17787.20951531681
},
{
"id": "btse",
"name": "BTSE",
"year_established": 2018,
"country": "British Virgin Islands",
"description": "BTSE is a leading digital asset exchange that empowers users by offering a simple and secure way to trade. Its growing suite of financial services is designed to bridge traditional finance with digital assets solutions. BTSE's innovative technology offers a set of digital financial solutions featuring multi-currency spot and derivatives trading, in addition to NFT and exchange white labels, over-the-counter (OTC) trading, asset management, and payment gateways. Additionally, BTSE provides an all-in-one order book, strict security protocols, an insurance fund, cold storage for more than 99% of assets and no withdrawal limits on over 12 fiat currencies and 100 cryptocurrencies.",
"url": "https://www.btse.com/",
"image": "https://assets.coingecko.com/markets/images/464/small/BTSE.jpg?1568012415",
"has_trading_incentive": false,
"trust_score": 8,
"trust_score_rank": 21,
"trade_volume_24h_btc": 15657.868912100257,
"trade_volume_24h_btc_normalized": 15070.573989248964
},
{
"id": "bkex",
"name": "BKEX",
"year_established": 2018,
"country": "British Virgin Islands",
"description": "",
"url": "https://www.bkex.com/",
"image": "https://assets.coingecko.com/markets/images/293/small/New_BKEX_logo.png?1646724631",
"has_trading_incentive": false,
"trust_score": 8,
"trust_score_rank": 22,
"trade_volume_24h_btc": 13659.077653265957,
"trade_volume_24h_btc_normalized": 13659.077653265957
},
{
"id": "tidex",
"name": "Tidex",
"year_established": 2017,
"country": "Lithuania",
"description": "",
"url": "https://tidex.com/",
"image": "https://assets.coingecko.com/markets/images/43/small/favicon.png?1651817092",
"has_trading_incentive": false,
"trust_score": 8,
"trust_score_rank": 23,
"trade_volume_24h_btc": 14335.823366148605,
"trade_volume_24h_btc_normalized": 12410.397138108101
},
{
"id": "btcex",
"name": "BTCEX",
"year_established": 2021,
"country": "Seychelles",
"description": "BTCEX is a highly extensible digital asset trading platform, which provides spot, spot leverage, futures, perpetual contracts, and USDT-settled options. In addition, it also supports multi-product portfolio margin models to improve the utilization of user funds.",
"url": "https://www.btcex.com",
"image": "https://assets.coingecko.com/markets/images/753/small/C8tiQdwL_400x400.jpg?1641348961",
"has_trading_incentive": false,
"trust_score": 8,
"trust_score_rank": 24,
"trade_volume_24h_btc": 9374.890522374048,
"trade_volume_24h_btc_normalized": 9374.890522374048
},
{
"id": "bitstamp",
"name": "Bitstamp",
"year_established": 2013,
"country": "Luxembourg",
"description": "",
"url": "https://links.bitstamp.net/c/2223866/1100037/14006",
"image": "https://assets.coingecko.com/markets/images/9/small/bitstamp.jpg?1519627979",
"has_trading_incentive": false,
"trust_score": 8,
"trust_score_rank": 25,
"trade_volume_24h_btc": 5851.852006131268,
"trade_volume_24h_btc_normalized": 5716.076035121053
},
{
"id": "btcturk",
"name": "BtcTurk PRO",
"year_established": 2013,
"country": "Turkey",
"description": "",
"url": "https://pro.btcturk.com/",
"image": "https://assets.coingecko.com/markets/images/223/small/BTCTurk-exchange.jpg?1536726120",
"has_trading_incentive": false,
"trust_score": 8,
"trust_score_rank": 26,
"trade_volume_24h_btc": 4930.025435090274,
"trade_volume_24h_btc_normalized": 4275.536583418433
},
{
"id": "exmo",
"name": "EXMO",
"year_established": 2013,
"country": "United Kingdom",
"description": "",
"url": "https://exmo.com/",
"image": "https://assets.coingecko.com/markets/images/59/small/tt_ava.jpg?1669360697",
"has_trading_incentive": false,
"trust_score": 8,
"trust_score_rank": 27,
"trade_volume_24h_btc": 2900.21220957582,
"trade_volume_24h_btc_normalized": 2900.21220957582
},
{
"id": "poloniex",
"name": "Poloniex",
"year_established": 2014,
"country": "Seychelles",
"description": "Poloniex was founded in January 2014 as a global cryptocurrency exchange. It provides spot trading, futures trading, staking, and various services to users in nearly 100 countries and regions with various languages available.\r\n\r\nIn 2022, Poloniex launched a brand new trading system to provide global retail and professional users with higher speed, as well as better stability and usability.",
"url": "https://poloniex.com/",
"image": "https://assets.coingecko.com/markets/images/37/small/poloniex.png?1663310089",
"has_trading_incentive": false,
"trust_score": 8,
"trust_score_rank": 28,
"trade_volume_24h_btc": 2527.0546872713408,
"trade_volume_24h_btc_normalized": 2527.0546872713408
},
{
"id": "bitso",
"name": "Bitso",
"year_established": 2014,
"country": "Gibraltar",
"description": "",
"url": "https://bitso.com",
"image": "https://assets.coingecko.com/markets/images/8/small/Bitso-icon-dark.png?1581909156",
"has_trading_incentive": false,
"trust_score": 8,
"trust_score_rank": 29,
"trade_volume_24h_btc": 1374.8604210658318,
"trade_volume_24h_btc_normalized": 1374.8604210658318
},
{
"id": "bitkub",
"name": "Bitkub",
"year_established": 2018,
"country": "Thailand",
"description": "",
"url": "https://www.bitkub.com",
"image": "https://assets.coingecko.com/markets/images/249/small/bitkub.png?1537180687",
"has_trading_incentive": false,
"trust_score": 8,
"trust_score_rank": 30,
"trade_volume_24h_btc": 1250.3147417056318,
"trade_volume_24h_btc_normalized": 1250.3147417056318
},
{
"id": "hotbit",
"name": "Hotbit",
"year_established": 2018,
"country": "Hong Kong",
"description": "Founded in 2018 and holding Estonian MTR licence, American MSB licence, an Australian AUSTRAC licence and a Canadian MSB licence,HotBit cryptocurrency exchange is known as a cryptocurrency trading platofrm that continues to develop and integrate various forms of businesses such as spot trading, financial derivatives, cryptocurrency investment and DAPP into one platform. Currently, Hotbit’s businesses covers more than 210 countries and areas. Based on its globalized and unified strategies, HotBit continues to focus on world's emerging markets such as Russia, Turkey and southeastern Asia markets, and was ranked one of the top 3 most welcomed exchanges by Russian media in 2019.",
"url": "https://www.hotbit.io/",
"image": "https://assets.coingecko.com/markets/images/201/small/hotbit.jpg?1531043195",
"has_trading_incentive": false,
"trust_score": 8,
"trust_score_rank": 31,
"trade_volume_24h_btc": 1052.2329466016429,
"trade_volume_24h_btc_normalized": 1052.2329466016429
},
{
"id": "coinex",
"name": "CoinEx",
"year_established": 2017,
"country": "Samoa",
"description": "",
"url": "https://www.coinex.com/",
"image": "https://assets.coingecko.com/markets/images/135/small/coinex.jpg?1527737297",
"has_trading_incentive": false,
"trust_score": 8,
"trust_score_rank": 32,
"trade_volume_24h_btc": 981.7771582066061,
"trade_volume_24h_btc_normalized": 981.7771582066061
},
{
"id": "bitbank",
"name": "Bitbank",
"year_established": 2016,
"country": "Japan",
"description": "",
"url": "https://bitbank.cc/",
"image": "https://assets.coingecko.com/markets/images/122/small/bitbank.jpg?1521186278",
"has_trading_incentive": false,
"trust_score": 8,
"trust_score_rank": 33,
"trade_volume_24h_btc": 843.6584174699549,
"trade_volume_24h_btc_normalized": 843.6584174699549
},
{
"id": "max_maicoin",
"name": "Max Maicoin",
"year_established": null,
"country": "Taiwan",
"description": "",
"url": "https://max.maicoin.com",
"image": "https://assets.coingecko.com/markets/images/218/small/max.jpg?1533888641",
"has_trading_incentive": false,
"trust_score": 8,
"trust_score_rank": 34,
"trade_volume_24h_btc": 718.7981812178937,
"trade_volume_24h_btc_normalized": 718.7981812178937
},
{
"id": "wootrade",
"name": "WOO X",
"year_established": 2019,
"country": "Seychelles",
"description": "WOO Network is a deep liquidity network connecting traders, exchanges, institutions, and DeFi platforms with democratized access to the best-in-class liquidity and trading execution at lower or zero cost. Its flagship, WOO X, is a professional trading platform featuring customizable modules and lower to zero fees complete with deep liquidity. WOO Network was founded by Kronos Research, a quantitative trading firm generating $5-10B in daily volume.",
"url": "https://woo.org/",
"image": "https://assets.coingecko.com/markets/images/683/small/woo.png?1677468948",
"has_trading_incentive": false,
"trust_score": 8,
"trust_score_rank": 35,
"trade_volume_24h_btc": 2139.7358840531924,
"trade_volume_24h_btc_normalized": 716.0654964161913
},
{
"id": "bittrex",
"name": "Bittrex",
"year_established": 2014,
"country": "Liechtenstein",
"description": "",
"url": "https://bittrex.com/",
"image": "https://assets.coingecko.com/markets/images/10/small/BG-color-250x250_icon.png?1596167574",
"has_trading_incentive": false,
"trust_score": 8,
"trust_score_rank": 36,
"trade_volume_24h_btc": 583.7531908380212,
"trade_volume_24h_btc_normalized": 583.7531908380212
},
{
"id": "blockchain_com",
"name": "Blockchain.com",
"year_established": 2012,
"country": "United Kingdom",
"description": "",
"url": "https://www.blockchain.com/",
"image": "https://assets.coingecko.com/markets/images/613/small/unnamedddd.png?1610503741",
"has_trading_incentive": false,
"trust_score": 8,
"trust_score_rank": 37,
"trade_volume_24h_btc": 115.95751491406546,
"trade_volume_24h_btc_normalized": 115.95751491406546
},
{
"id": "okcoin",
"name": "Okcoin",
"year_established": 2013,
"country": "United States",
"description": "Founded in 2013, Okcoin is a US-headquartered cryptocurrency exchange serving 190+ countries and territories. The platform enables retail and institutional investors to purchase digital assets using local currencies, with a mission to make crypto easy for everyone, including first-time buyers. Okcoin was the first centralized exchange to offer direct entry into decentralized finance (DeFi) with Earn, a tool for earning APY through decentralized lending, liquidity pools, staking, and more. In addition, Okcoin offers institutional trading tools and APIs to asset managers, venture capital and hedge funds, retail brokers, payment processors, and more. Follow Okcoin on Twitter at @Okcoin and visit okcoin.com for more information.",
"url": "https://www.okcoin.com/",
"image": "https://assets.coingecko.com/markets/images/415/small/okcoin_Logomark_SatoshiBlack.png?1619574335",
"has_trading_incentive": false,
"trust_score": 8,
"trust_score_rank": 38,
"trade_volume_24h_btc": 14.209894989075252,
"trade_volume_24h_btc_normalized": 14.209894989075252
},
{
"id": "nice_hash",
"name": "NiceHash",
"year_established": null,
"country": "Slovenia",
"description": "",
"url": "https://www.nicehash.com",
"image": "https://assets.coingecko.com/markets/images/546/small/logo_small_light.png?1637836622",
"has_trading_incentive": false,
"trust_score": 8,
"trust_score_rank": 39,
"trade_volume_24h_btc": 9.695352001751669,
"trade_volume_24h_btc_normalized": 9.695352001751669
},
{
"id": "coinspro",
"name": "Coins.ph",
"year_established": null,
"country": "Philippines",
"description": "",
"url": "https://coins.ph/about",
"image": "https://assets.coingecko.com/markets/images/999/small/coinspro.png?1668488887",
"has_trading_incentive": false,
"trust_score": 8,
"trust_score_rank": 40,
"trade_volume_24h_btc": 8.244090224796041,
"trade_volume_24h_btc_normalized": 8.244090224796041
},
{
"id": "bitrue",
"name": "Bitrue",
"year_established": 2018,
"country": "Singapore",
"description": "",
"url": "https://www.bitrue.com/",
"image": "https://assets.coingecko.com/markets/images/254/small/unnamed_%281%29.png?1656295820",
"has_trading_incentive": false,
"trust_score": 7,
"trust_score_rank": 41,
"trade_volume_24h_btc": 49195.73947731769,
"trade_volume_24h_btc_normalized": 21183.70664579639
},
{
"id": "digifinex",
"name": "DigiFinex",
"year_established": 2018,
"country": "Seychelles",
"description": "",
"url": "https://www.digifinex.com/",
"image": "https://assets.coingecko.com/markets/images/225/small/DF_logo.png?1594264355",
"has_trading_incentive": false,
"trust_score": 7,
"trust_score_rank": 42,
"trade_volume_24h_btc": 16254.538737909561,
"trade_volume_24h_btc_normalized": 16254.538737909561
},
{
"id": "coinsbit",
"name": "Coinsbit",
"year_established": null,
"country": "Estonia",
"description": "",
"url": "https://coinsbit.io/",
"image": "https://assets.coingecko.com/markets/images/267/small/Coinsbit.png?1605153697",
"has_trading_incentive": false,
"trust_score": 7,
"trust_score_rank": 43,
"trade_volume_24h_btc": 11252.443360463421,
"trade_volume_24h_btc_normalized": 11252.443360463421
},
{
"id": "deepcoin",
"name": "Deepcoin",
"year_established": 2018,
"country": "Seychelles",
"description": "Deepcoin Exchange offers groundbreaking tools for you to buy and sell over 120 cryptocurrencies. Since 2018, we have provided a secure and reliable way for you to invest in spot and futures trading to our over 1 million users.",
"url": "https://www.deepcoin.com/",
"image": "https://assets.coingecko.com/markets/images/1005/small/%E2%98%85%E6%96%B9-%E9%80%8F%E6%98%8E7.png?1678175660",
"has_trading_incentive": false,
"trust_score": 7,
"trust_score_rank": 44,
"trade_volume_24h_btc": 7943.212585052961,
"trade_volume_24h_btc_normalized": 7943.212585052961
},
{
"id": "bithumb",
"name": "Bithumb",
"year_established": 2014,
"country": "South Korea",
"description": "",
"url": "https://www.bithumb.com/",
"image": "https://assets.coingecko.com/markets/images/6/small/bithumb_BI.png?1573104549",
"has_trading_incentive": false,
"trust_score": 7,
"trust_score_rank": 45,
"trade_volume_24h_btc": 7543.438621766049,
"trade_volume_24h_btc_normalized": 7543.438621766049
},
{
"id": "p2pb2b",
"name": "P2B",
"year_established": 2018,
"country": "Lithuania",
"description": "P2B Cryptocurrency Exchange is one of the biggest European digital assets exchanges that has successfully operated for over 5 years. It is now the most trusted platform offering the best go-to-market experience for crypto users and projects.\r\n\r\nThe platform tops the most trusted ratings worldwide - CoinMarketCap and CoinGecko - and permanently improves its position. We assure the safety of the trading activities, being ranked in the TOP-12 in Cer.Live security rate. \r\n\r\nThe users can easily explore the mature crypto market by investing in a wide variety of liquid tokens, buying cryptocurrencies with bank cards (via Simplex, Moon Pay, Koinal) and using attractive discounts or bonuses during fundraising campaigns. You can also choose the amount of your commission, - use the level commission to raise your account opportunities and make your trading more profitable. \r\n\r\nBecome a part of the prosperous P2B community - #1 place to be in crypto.\r\nGet your exciting trading experience with 24/7 support, and gain quickly and securely.\r\n",
"url": "https://p2pb2b.com/",
"image": "https://assets.coingecko.com/markets/images/251/small/ow0xng56_400x400.jpeg?1664939403",
"has_trading_incentive": false,
"trust_score": 7,
"trust_score_rank": 46,
"trade_volume_24h_btc": 7021.153656037492,
"trade_volume_24h_btc_normalized": 7021.153656037492
},
{
"id": "coinstore",
"name": "Coinstore",
"year_established": 2020,
"country": "Singapore",
"description": "Coinstore was founded in 2020. There are 180 employees worldwide distributed mainly in Asia, Europe, and the Middle East, serving more than 1,500,000 registered users in 175 countries. Coinstore provides global users with fast and smooth cryptocurrency trading services, derivatives business, OTC services, and NFT services. Coinstore Labs provides project owners with integrated solutions of “technology development, compliance counseling, integrated marketing, community operations, investment incubation” and much more.\r\n\r\nCoinstore supports 102 spot pairs and 34 futures pairs. All features are available on Coinstore’s mobile app for iOS and Android, and on desktop.",
"url": "https://www.coinstore.com/#/",
"image": "https://assets.coingecko.com/markets/images/747/small/coinstore.jpeg?1639530357",
"has_trading_incentive": false,
"trust_score": 7,
"trust_score_rank": 47,
"trade_volume_24h_btc": 15106.94138545177,
"trade_volume_24h_btc_normalized": 5535.715202547429
},
{
"id": "paribu",
"name": "Paribu",
"year_established": null,
"country": "Turkey",
"description": null,
"url": "https://www.paribu.com/",
"image": "https://assets.coingecko.com/markets/images/136/small/paribu.jpg?1527734779",
"has_trading_incentive": null,
"trust_score": 7,
"trust_score_rank": 48,
"trade_volume_24h_btc": 4634.640028372352,
"trade_volume_24h_btc_normalized": 4634.640028372352
},
{
"id": "bigone",
"name": "BigONE",
"year_established": 2017,
"country": "Netherlands",
"description": "",
"url": "https://bigone.com",
"image": "https://assets.coingecko.com/markets/images/100/small/qcFFufEY_400x400.jpg?1561103345",
"has_trading_incentive": false,
"trust_score": 7,
"trust_score_rank": 49,
"trade_volume_24h_btc": 4304.664259706362,
"trade_volume_24h_btc_normalized": 4304.664259706362
},
{
"id": "dextrade",
"name": "Dex-Trade",
"year_established": 2019,
"country": "Belize",
"description": "Dex-Trade is a centralized cryptocurrency exchange founded in 2017 and registered in Belize. This is a modern space for safe and comfortable trading with minimal commissions.\r\n\r\nDex-Trade is a universal exchange for both beginners and professional traders. The minimum spread and high liquidity in order books allow you to trade efficiently with orders of any volume.\r\nAlong with global opportunities, the exchange also provides a demo trading mode for risk-free testing of your trading strategies. Our dedicated support team is online 24/7 to assist you with any questions.\r\n\r\nYou can learn more about Dex-Trade on the website.\r\nhttps://dex-trade.com/info/about\r\n\r\nIf you are looking for listing and promotion options with Dex-Trade please visit our listing page and a personal manager will help you to utilize our proven tools and intelligent market-making system to engage with the vast exchange community in the best possible way. https://dex-trade.com/listing",
"url": "https://dex-trade.com/",
"image": "https://assets.coingecko.com/markets/images/380/small/Dex-Trade_logo_new.png?1599629803",
"has_trading_incentive": false,
"trust_score": 7,
"trust_score_rank": 50,
"trade_volume_24h_btc": 3318.020130476477,
"trade_volume_24h_btc_normalized": 3318.020130476477
},
{
"id": "bitflyer",
"name": "bitFlyer",
"year_established": 2014,
"country": "Japan",
"description": "",
"url": "https://bitflyereuropesa.pxf.io/c/2223866/858437/11990",
"image": "https://assets.coingecko.com/markets/images/5/small/bitFlyer-logo.png?1643256033",
"has_trading_incentive": false,
"trust_score": 7,
"trust_score_rank": 51,
"trade_volume_24h_btc": 3077.0728263121614,
"trade_volume_24h_btc_normalized": 3077.0728263121614
},
{
"id": "latoken",
"name": "LATOKEN",
"year_established": 2017,
"country": "Cayman Islands",
"description": "",
"url": "https://latoken.com/",
"image": "https://assets.coingecko.com/markets/images/124/small/LA_token.png?1605773251",
"has_trading_incentive": false,
"trust_score": 7,
"trust_score_rank": 52,
"trade_volume_24h_btc": 4854.380986317747,
"trade_volume_24h_btc_normalized": 1894.5921627423857
},
{
"id": "pointpay",
"name": "PointPay",
"year_established": 2018,
"country": "Saint Vincent and the Grenadines",
"description": "",
"url": "https://exchange.pointpay.io/",
"image": "https://assets.coingecko.com/markets/images/1060/small/pointpay.png?1676882506",
"has_trading_incentive": false,
"trust_score": 7,
"trust_score_rank": 53,
"trade_volume_24h_btc": 1351.690275983334,
"trade_volume_24h_btc_normalized": 1018.5544142352154
},
{
"id": "luno",
"name": "Luno",
"year_established": 2013,
"country": "Singapore",
"description": "",
"url": "https://www.luno.com",
"image": "https://assets.coingecko.com/markets/images/33/small/luno.jpg?1519996997",
"has_trading_incentive": false,
"trust_score": 7,
"trust_score_rank": 54,
"trade_volume_24h_btc": 478.50675523071527,
"trade_volume_24h_btc_normalized": 478.50675523071527
},
{
"id": "independent_reserve",
"name": "Independent Reserve",
"year_established": 2013,
"country": "Australia",
"description": "",
"url": "https://www.independentreserve.com/",
"image": "https://assets.coingecko.com/markets/images/389/small/x_V5Jquo_400x400.png?1556071437",
"has_trading_incentive": false,
"trust_score": 7,
"trust_score_rank": 55,
"trade_volume_24h_btc": 437.4404302252687,
"trade_volume_24h_btc_normalized": 437.4404302252687
},
{
"id": "valr",
"name": "VALR",
"year_established": 2018,
"country": "South Africa",
"description": "",
"url": "https://www.valr.com/",
"image": "https://assets.coingecko.com/markets/images/1036/small/valr.png?1674711237",
"has_trading_incentive": false,
"trust_score": 7,
"trust_score_rank": 56,
"trade_volume_24h_btc": 382.34096451750816,
"trade_volume_24h_btc_normalized": 382.34096451750816
},
{
"id": "kanga",
"name": "Kanga",
"year_established": 2018,
"country": "Belize",
"description": "",
"url": "https://kanga.exchange/",
"image": "https://assets.coingecko.com/markets/images/852/small/kanga_logo.png?1650269423",
"has_trading_incentive": false,
"trust_score": 7,
"trust_score_rank": 57,
"trade_volume_24h_btc": 318.5765782458587,
"trade_volume_24h_btc_normalized": 318.5765782458587
},
{
"id": "finexbox",
"name": "FinexBox",
"year_established": 2018,
"country": "Hong Kong",
"description": "",
"url": "https://www.finexbox.com/",
"image": "https://assets.coingecko.com/markets/images/318/small/finexbox20190920.jpg?1568959220",
"has_trading_incentive": false,
"trust_score": 7,
"trust_score_rank": 58,
"trade_volume_24h_btc": 299.6556798985899,
"trade_volume_24h_btc_normalized": 299.6556798985899
},
{
"id": "bitopro",
"name": "BitoPro",
"year_established": 2018,
"country": "Taiwan",
"description": "",
"url": "https://www.bitopro.com/",
"image": "https://assets.coingecko.com/markets/images/358/small/bitopro_coingecko_250x250_%281%29.png?1575884378",
"has_trading_incentive": false,
"trust_score": 7,
"trust_score_rank": 59,
"trade_volume_24h_btc": 339.44540575518033,
"trade_volume_24h_btc_normalized": 295.3496602876913
},
{
"id": "indodax",
"name": "Indodax",
"year_established": 2014,
"country": "Indonesia",
"description": "",
"url": "https://indodax.com",
"image": "https://assets.coingecko.com/markets/images/3/small/logogram-Indodax-new-_JPG_format.jpg?1580974378",
"has_trading_incentive": false,
"trust_score": 7,
"trust_score_rank": 60,
"trade_volume_24h_btc": 285.0914269409111,
"trade_volume_24h_btc_normalized": 285.0914269409111
},
{
"id": "korbit",
"name": "Korbit",
"year_established": 2013,
"country": "South Korea",
"description": "",
"url": "https://www.korbit.co.kr/",
"image": "https://assets.coingecko.com/markets/images/28/small/korbit-logo.png?1584091827",
"has_trading_incentive": false,
"trust_score": 7,
"trust_score_rank": 61,
"trade_volume_24h_btc": 186.84466005732276,
"trade_volume_24h_btc_normalized": 186.84466005732276
},
{
"id": "btcmarkets",
"name": "BTCMarkets",
"year_established": null,
"country": "Australia",
"description": "",
"url": "https://www.btcmarkets.net/",
"image": "https://assets.coingecko.com/markets/images/237/small/BTCMarkets_logo2.png?1677732205",
"has_trading_incentive": false,
"trust_score": 7,
"trust_score_rank": 62,
"trade_volume_24h_btc": 162.8226588607291,
"trade_volume_24h_btc_normalized": 162.8226588607291
},
{
"id": "coin_metro",
"name": "Coinmetro",
"year_established": 2018,
"country": "Estonia",
"description": "",
"url": "https://coinmetro.com/",
"image": "https://assets.coingecko.com/markets/images/386/small/Coinmetro_Exchange_Logo_%282%29.png?1646280101",
"has_trading_incentive": false,
"trust_score": 7,
"trust_score_rank": 63,
"trade_volume_24h_btc": 30.042009272988885,
"trade_volume_24h_btc_normalized": 30.042009272988885
},
{
"id": "bitmex_spot",
"name": "BitMEX",
"year_established": null,
"country": null,
"description": "",
"url": "https://www.bitmex.com/spot/",
"image": "https://assets.coingecko.com/markets/images/866/small/bitmex.jpeg?1652794708",
"has_trading_incentive": false,
"trust_score": 7,
"trust_score_rank": 64,
"trade_volume_24h_btc": 25.510391759211718,
"trade_volume_24h_btc_normalized": 25.510391759211718
},
{
"id": "kuna",
"name": "Kuna Exchange",
"year_established": null,
"country": "United Kingdom",
"description": "",
"url": "https://kuna.io/",
"image": "https://assets.coingecko.com/markets/images/97/small/kuna_exchange.png?1545126178",
"has_trading_incentive": false,
"trust_score": 7,
"trust_score_rank": 65,
"trade_volume_24h_btc": 15.661483898851728,
"trade_volume_24h_btc_normalized": 15.661483898851728
},
{
"id": "delta_spot",
"name": "Delta Exchange",
"year_established": null,
"country": null,
"description": "",
"url": "https://www.delta.exchange/app/spot/trade/",
"image": "https://assets.coingecko.com/markets/images/642/small/delta_spot.jpg?1617283005",
"has_trading_incentive": false,
"trust_score": 7,
"trust_score_rank": 66,
"trade_volume_24h_btc": 15.041494718566936,
"trade_volume_24h_btc_normalized": 15.041494718566936
},
{
"id": "xt",
"name": "XT.COM",
"year_established": 2018,
"country": "Seychelles",
"description": "By consistently expanding its ecosystem, XT.COM is dedicated to providing users with the most secure, trusted, and hassle-free digital asset trading services. Our exchange is built from a desire to give everyone access to digital assets regardless where you are. \r\n\r\nFounded in 2018, XT.COM now serves more than 6 million registered users, over 500,000+ monthly active users and 40+ million users in the ecosystem. Covering a rich variety of trading categories together with a NFT aggregated marketplace, our platform strives to cater to its large user base by providing a secure, trusted and intuitive trading experience.\r\n\r\nAs the world’s first social-infused digital assets trading platform, XT.COM also supports social networking platform based transactions to make our crypto services more accessible to users all over the world. Furthermore, to ensure optimal data integrity and security, we see user security as our top priority at XT.COM. ",
"url": "https://www.xt.com/",
"image": "https://assets.coingecko.com/markets/images/404/small/logo400x400.png?1575881839",
"has_trading_incentive": false,
"trust_score": 6,
"trust_score_rank": 67,
"trade_volume_24h_btc": 27063.28166736872,
"trade_volume_24h_btc_normalized": 25730.787228492056
},
{
"id": "uniswap_v3",
"name": "Uniswap (v3)",
"year_established": 2018,
"country": null,
"description": "",
"url": "https://app.uniswap.org/#/swap",
"image": "https://assets.coingecko.com/markets/images/665/small/uniswap-v3.png?1620241698",
"has_trading_incentive": false,
"trust_score": 6,
"trust_score_rank": 68,
"trade_volume_24h_btc": 17640.645914261797,
"trade_volume_24h_btc_normalized": 17640.645914261797
},
{
"id": "cointr",
"name": "CoinTR Pro",
"year_established": 2022,
"country": "Lithuania",
"description": "",
"url": "https://www.cointr.pro/",
"image": "https://assets.coingecko.com/markets/images/1028/small/cointr.png?1673681204",
"has_trading_incentive": false,
"trust_score": 6,
"trust_score_rank": 69,
"trade_volume_24h_btc": 17970.258628937037,
"trade_volume_24h_btc_normalized": 14239.633567802968
},
{
"id": "uniswap_v3_arbitrum",
"name": "Uniswap (Arbitrum One)",
"year_established": null,
"country": null,
"description": "",
"url": "https://app.uniswap.org/#/swap",
"image": "https://assets.coingecko.com/markets/images/702/small/uniswap-v3.png?1631616149",
"has_trading_incentive": false,
"trust_score": 6,
"trust_score_rank": 70,
"trade_volume_24h_btc": 7829.282372061595,
"trade_volume_24h_btc_normalized": 7829.282372061595
},
{
"id": "pionex",
"name": "Pionex",
"year_established": 2019,
"country": "British Virgin Islands",
"description": "",
"url": "https://www.pionex.com",
"image": "https://assets.coingecko.com/markets/images/1026/small/pionex.png?1673508138",
"has_trading_incentive": false,
"trust_score": 6,
"trust_score_rank": 71,
"trade_volume_24h_btc": 14170.45436998524,
"trade_volume_24h_btc_normalized": 6912.945101566211
},
{
"id": "pancakeswap-v3-bsc",
"name": "Pancakeswap V3 (BSC)",
"year_established": null,
"country": null,