-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathglobal_badges.json
More file actions
4552 lines (4552 loc) · 164 KB
/
Copy pathglobal_badges.json
File metadata and controls
4552 lines (4552 loc) · 164 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"id": "MDA3LWd1bi1iYXJyZWw7MTs=",
"setID": "007-gun-barrel",
"version": "1",
"title": "007 Gun Barrel",
"description": "This badge was earned by subscribing or gifting a sub to a streamer in the 007 First Light category during the game launch!",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/6ae7ce40-99e6-4d83-8487-f8b990bf5f32/1",
"onClickAction": null,
"clickURL": null
},
{
"id": "c3ViLWdpZnRlcjsxMDs=",
"setID": "sub-gifter",
"version": "10",
"title": "10 Gift Subs",
"description": "Has gifted a subscription to another viewer in this community",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/d333288c-65d7-4c7b-b691-cdd7b3484bf8/1",
"onClickAction": null,
"clickURL": null
},
{
"id": "MTAteWVhcnMtYXMtdHdpdGNoLXN0YWZmOzE7",
"setID": "10-years-as-twitch-staff",
"version": "1",
"title": "10 years as Twitch Staff",
"description": "Celebrating 10 years as Twitch Staff!",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/e48bfab8-6697-4c5b-84df-e64fb0150701/1",
"onClickAction": null,
"clickURL": null
},
{
"id": "c3ViLWdpZnRlcjsxMDA7",
"setID": "sub-gifter",
"version": "100",
"title": "100 Gift Subs",
"description": "Has gifted a subscription to another viewer in this community",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/8343ada7-3451-434e-91c4-e82bdcf54460/1",
"onClickAction": null,
"clickURL": null
},
{
"id": "c3ViLWdpZnRlcjsxMDAwOw==",
"setID": "sub-gifter",
"version": "1000",
"title": "1000 Gift Subs",
"description": "Has gifted a subscription to another viewer in this community",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/bfb7399a-c632-42f7-8d5f-154610dede81/1",
"onClickAction": null,
"clickURL": null
},
{
"id": "MTUteWVhcnMtYXMtdHdpdGNoLXN0YWZmOzE7",
"setID": "15-years-as-twitch-staff",
"version": "1",
"title": "15 years as Twitch Staff",
"description": "Celebrating 15 years as Twitch Staff!",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/523802ec-086b-4dec-b441-90e28b0806d8/1",
"onClickAction": null,
"clickURL": null
},
{
"id": "c3ViLWdpZnRlcjsxNTA7",
"setID": "sub-gifter",
"version": "150",
"title": "150 Gift Subs",
"description": "Has gifted a subscription to another viewer in this community",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/514845ba-0fc3-4771-bce1-14d57e91e621/1",
"onClickAction": null,
"clickURL": null
},
{
"id": "MTk3OS1yZXZvbHV0aW9uXzE7MTs=",
"setID": "1979-revolution_1",
"version": "1",
"title": "1979 Revolution",
"description": "1979 Revolution",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/7833bb6e-d20d-48ff-a58d-67fe827a4f84/1",
"onClickAction": "VISIT_URL",
"clickURL": "https://www.twitch.tv/directory/game/1979%20Revolution/details"
},
{
"id": "c3Vic2NyaWJlcjsyOw==",
"setID": "subscriber",
"version": "2",
"title": "2-Month Subscriber",
"description": "2-Month Subscriber",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/25a03e36-2bb2-4625-bd37-d6d9d406238d/1",
"onClickAction": "SUBSCRIBE",
"clickURL": null
},
{
"id": "c3ViLWdpZnRlcjsyMDA7",
"setID": "sub-gifter",
"version": "200",
"title": "200 Gift Subs",
"description": "Has gifted a subscription to another viewer in this community",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/c6b1893e-8059-4024-b93c-39c84b601732/1",
"onClickAction": null,
"clickURL": null
},
{
"id": "c3ViLWdpZnRlcjsyMDAwOw==",
"setID": "sub-gifter",
"version": "2000",
"title": "2000 Gift Subs",
"description": "Has gifted a subscription to another viewer in this community",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/4e8b3a32-1513-44ad-8a12-6c90232c77f9/1",
"onClickAction": null,
"clickURL": null
},
{
"id": "dmdhLWNoYW1wLTIwMTc7MTs=",
"setID": "vga-champ-2017",
"version": "1",
"title": "2017 VGA Champ",
"description": "2017 VGA Champ",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/03dca92e-dc69-11e7-ac5b-9f942d292dc7/1",
"onClickAction": "VISIT_URL",
"clickURL": "https://blog.twitch.tv/watch-and-co-stream-the-game-awards-this-thursday-on-twitch-3d8e34d2345d"
},
{
"id": "MjAyNi1iYWZ0YS1nYW1lcy1hd2FyZHM7MTs=",
"setID": "2026-bafta-games-awards",
"version": "1",
"title": "2026 BAFTA Games Awards",
"description": "This badge was earned by watching the 2026 BAFTA Games Awards!",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/44244be0-bb62-470c-bb0f-d2f6fcac2864/1",
"onClickAction": null,
"clickURL": null
},
{
"id": "c3ViLWdpZnRlcjsyNTs=",
"setID": "sub-gifter",
"version": "25",
"title": "25 Gift Subs",
"description": "Has gifted a subscription to another viewer in this community",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/052a5d41-f1cc-455c-bc7b-fe841ffaf17f/1",
"onClickAction": null,
"clickURL": null
},
{
"id": "c3ViLWdpZnRlcjsyNTA7",
"setID": "sub-gifter",
"version": "250",
"title": "250 Gift Subs",
"description": "Has gifted a subscription to another viewer in this community",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/cd479dc0-4a15-407d-891f-9fd2740bddda/1",
"onClickAction": null,
"clickURL": null
},
{
"id": "c3Vic2NyaWJlcjszOw==",
"setID": "subscriber",
"version": "3",
"title": "3-Month Subscriber",
"description": "3-Month Subscriber",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/e8984705-d091-4e54-8241-e53b30a84b0e/1",
"onClickAction": "SUBSCRIBE",
"clickURL": null
},
{
"id": "c3ViLWdpZnRlcjszMDA7",
"setID": "sub-gifter",
"version": "300",
"title": "300 Gift Subs",
"description": "Has gifted a subscription to another viewer in this community",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/9e1bb24f-d238-4078-871a-ac401b76ecf2/1",
"onClickAction": null,
"clickURL": null
},
{
"id": "c3ViLWdpZnRlcjszMDAwOw==",
"setID": "sub-gifter",
"version": "3000",
"title": "3000 Gift Subs",
"description": "Has gifted a subscription to another viewer in this community",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/b18852ba-65d2-4b84-97d2-aeb6c44a0956/1",
"onClickAction": null,
"clickURL": null
},
{
"id": "c3ViLWdpZnRlcjszNTA7",
"setID": "sub-gifter",
"version": "350",
"title": "350 Gift Subs",
"description": "Has gifted a subscription to another viewer in this community",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/6c4783cd-0aba-4e75-a7a4-f48a70b665b0/1",
"onClickAction": null,
"clickURL": null
},
{
"id": "c3ViLWdpZnRlcjs0MDA7",
"setID": "sub-gifter",
"version": "400",
"title": "400 Gift Subs",
"description": "Has gifted a subscription to another viewer in this community",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/6f4cab6b-def9-4d99-ad06-90b0013b28c8/1",
"onClickAction": null,
"clickURL": null
},
{
"id": "c3ViLWdpZnRlcjs0MDAwOw==",
"setID": "sub-gifter",
"version": "4000",
"title": "4000 Gift Subs",
"description": "Has gifted a subscription to another viewer in this community",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/efbf3c93-ecfa-4b67-8d0a-1f732fb07397/1",
"onClickAction": null,
"clickURL": null
},
{
"id": "c3ViLWdpZnRlcjs0NTA7",
"setID": "sub-gifter",
"version": "450",
"title": "450 Gift Subs",
"description": "Has gifted a subscription to another viewer in this community",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/b593d68a-f8fb-4516-a09a-18cce955402c/1",
"onClickAction": null,
"clickURL": null
},
{
"id": "c3ViLWdpZnRlcjs1Ow==",
"setID": "sub-gifter",
"version": "5",
"title": "5 Gift Subs",
"description": "Has gifted a subscription to another viewer in this community",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/ee113e59-c839-4472-969a-1e16d20f3962/1",
"onClickAction": null,
"clickURL": null
},
{
"id": "NS15ZWFycy1hcy10d2l0Y2gtc3RhZmY7MTs=",
"setID": "5-years-as-twitch-staff",
"version": "1",
"title": "5 years as Twitch Staff",
"description": "Celebrating 5 years as Twitch Staff!",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/d53671d0-0ce0-4706-905f-7fe8b122a27a/1",
"onClickAction": null,
"clickURL": null
},
{
"id": "c3ViLWdpZnRlcjs1MDs=",
"setID": "sub-gifter",
"version": "50",
"title": "50 Gift Subs",
"description": "Has gifted a subscription to another viewer in this community",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/c4a29737-e8a5-4420-917a-314a447f083e/1",
"onClickAction": null,
"clickURL": null
},
{
"id": "c3ViLWdpZnRlcjs1MDA7",
"setID": "sub-gifter",
"version": "500",
"title": "500 Gift Subs",
"description": "Has gifted a subscription to another viewer in this community",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/60e9504c-8c3d-489f-8a74-314fb195ad8d/1",
"onClickAction": null,
"clickURL": null
},
{
"id": "c3ViLWdpZnRlcjs1MDAwOw==",
"setID": "sub-gifter",
"version": "5000",
"title": "5000 Gift Subs",
"description": "Has gifted a subscription to another viewer in this community",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/d775275d-fd19-4914-b63a-7928a22135c3/1",
"onClickAction": null,
"clickURL": null
},
{
"id": "c3ViLWdpZnRlcjs1NTA7",
"setID": "sub-gifter",
"version": "550",
"title": "550 Gift Subs",
"description": "Has gifted a subscription to another viewer in this community",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/024d2563-1794-43ed-b8dc-33df3efae900/1",
"onClickAction": null,
"clickURL": null
},
{
"id": "c3Vic2NyaWJlcjs0Ow==",
"setID": "subscriber",
"version": "4",
"title": "6-Month Subscriber",
"description": "6-Month Subscriber",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/2d2485f6-d19b-4daa-8393-9493b019156b/1",
"onClickAction": "SUBSCRIBE",
"clickURL": null
},
{
"id": "c3Vic2NyaWJlcjs2Ow==",
"setID": "subscriber",
"version": "6",
"title": "6-Month Subscriber",
"description": "1-Year Subscriber",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/ed51a614-2c44-4a60-80b6-62908436b43a/1",
"onClickAction": "SUBSCRIBE",
"clickURL": null
},
{
"id": "NjAtc2Vjb25kc18xOzE7",
"setID": "60-seconds_1",
"version": "1",
"title": "60 Seconds!",
"description": "60 Seconds!",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/1e7252f9-7e80-4d3d-ae42-319f030cca99/1",
"onClickAction": "VISIT_URL",
"clickURL": "https://www.twitch.tv/directory/game/60%20Seconds!/details"
},
{
"id": "NjAtc2Vjb25kc18yOzE7",
"setID": "60-seconds_2",
"version": "1",
"title": "60 Seconds!",
"description": "60 Seconds!",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/64513f7d-21dd-4a05-a699-d73761945cf9/1",
"onClickAction": "VISIT_URL",
"clickURL": "https://www.twitch.tv/directory/game/60%20Seconds!/details"
},
{
"id": "NjAtc2Vjb25kc18zOzE7",
"setID": "60-seconds_3",
"version": "1",
"title": "60 Seconds!",
"description": "60 Seconds!",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/f4306617-0f96-476f-994e-5304f81bcc6e/1",
"onClickAction": "VISIT_URL",
"clickURL": "https://www.twitch.tv/directory/game/60%20Seconds!/details"
},
{
"id": "c3ViLWdpZnRlcjs2MDA7",
"setID": "sub-gifter",
"version": "600",
"title": "600 Gift Subs",
"description": "Has gifted a subscription to another viewer in this community",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/3ecc3aab-09bf-4823-905e-3a4647171fc1/1",
"onClickAction": null,
"clickURL": null
},
{
"id": "c3ViLWdpZnRlcjs2NTA7",
"setID": "sub-gifter",
"version": "650",
"title": "650 Gift Subs",
"description": "Has gifted a subscription to another viewer in this community",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/eeabf43c-8e4c-448d-9790-4c2172c57944/1",
"onClickAction": null,
"clickURL": null
},
{
"id": "c3ViLWdpZnRlcjs3MDA7",
"setID": "sub-gifter",
"version": "700",
"title": "700 Gift Subs",
"description": "Has gifted a subscription to another viewer in this community",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/4a9acdc7-30be-4dd1-9898-fc9e42b3d304/1",
"onClickAction": null,
"clickURL": null
},
{
"id": "c3ViLWdpZnRlcjs3NTA7",
"setID": "sub-gifter",
"version": "750",
"title": "750 Gift Subs",
"description": "Has gifted a subscription to another viewer in this community",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/ca17277c-53e5-422b-8bb4-7c5dcdb0ac67/1",
"onClickAction": null,
"clickURL": null
},
{
"id": "c3ViLWdpZnRlcjs4MDA7",
"setID": "sub-gifter",
"version": "800",
"title": "800 Gift Subs",
"description": "Has gifted a subscription to another viewer in this community",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/9c1fb96d-0579-43d7-ba94-94672eaef63a/1",
"onClickAction": null,
"clickURL": null
},
{
"id": "c3ViLWdpZnRlcjs4NTA7",
"setID": "sub-gifter",
"version": "850",
"title": "850 Gift Subs",
"description": "Has gifted a subscription to another viewer in this community",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/cc924aaf-dfd4-4f3f-822a-f5a87eb24069/1",
"onClickAction": null,
"clickURL": null
},
{
"id": "c3Vic2NyaWJlcjs1Ow==",
"setID": "subscriber",
"version": "5",
"title": "9-Month Subscriber",
"description": "9-Month Subscriber",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/b4e6b13a-a76f-4c56-87e1-9375a7aaa610/1",
"onClickAction": "SUBSCRIBE",
"clickURL": null
},
{
"id": "c3ViLWdpZnRlcjs5MDA7",
"setID": "sub-gifter",
"version": "900",
"title": "900 Gift Subs",
"description": "Has gifted a subscription to another viewer in this community",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/193d86f6-83e1-428c-9638-d6ca9e408166/1",
"onClickAction": null,
"clickURL": null
},
{
"id": "c3ViLWdpZnRlcjs5NTA7",
"setID": "sub-gifter",
"version": "950",
"title": "950 Gift Subs",
"description": "Has gifted a subscription to another viewer in this community",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/7ce130bd-6f55-40cc-9231-e2a4cb712962/1",
"onClickAction": null,
"clickURL": null
},
{
"id": "YWFuZzsxOw==",
"setID": "aang",
"version": "1",
"title": "Aang",
"description": "This badge was earned by subscribing or gifting a sub to an Avatar Legends: The Fighting Game streamer!",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/dfc8243b-037c-4e5e-a8f3-87ad1f01850d/1",
"onClickAction": null,
"clickURL": null
},
{
"id": "YWRtaW47MTs=",
"setID": "admin",
"version": "1",
"title": "Admin",
"description": "Twitch Admin",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/9ef7e029-4cdf-4d4d-a0d5-e2b3fb2583fe/1",
"onClickAction": null,
"clickURL": null
},
{
"id": "d2FyY3JhZnQ7YWxsaWFuY2U7",
"setID": "warcraft",
"version": "alliance",
"title": "Alliance",
"description": "For Lordaeron!",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/c4816339-bad4-4645-ae69-d1ab2076a6b0/1",
"onClickAction": "VISIT_URL",
"clickURL": "http://warcraftontwitch.tv/"
},
{
"id": "YWxvbmU7MTs=",
"setID": "alone",
"version": "1",
"title": "Alone",
"description": "This badge was earned by subscribing or gifting a sub to a streamer in the Little Nightmares III category during launch.",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/10ba11a2-0171-42b6-9bba-8f2f14248172/1",
"onClickAction": null,
"clickURL": null
},
{
"id": "YWx0ZXJyYS1jb3Jwb3JhdGlvbjsxOw==",
"setID": "alterra-corporation",
"version": "1",
"title": "Alterra Corporation",
"description": "This badge was earned by subscribing or gifting a sub to a streamer in the Subnautica 2 category during week 2 of launch.",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/18d8ad18-788e-4b47-9c9b-783a41c13ec3/1",
"onClickAction": null,
"clickURL": null
},
{
"id": "YW5vbWFseS0yXzE7MTs=",
"setID": "anomaly-2_1",
"version": "1",
"title": "Anomaly 2",
"description": "Anomaly 2",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/d1d1ad54-40a6-492b-882e-dcbdce5fa81e/1",
"onClickAction": "VISIT_URL",
"clickURL": "https://www.twitch.tv/directory/game/Anomaly%202/details"
},
{
"id": "YW5vbWFseS13YXJ6b25lLWVhcnRoXzE7MTs=",
"setID": "anomaly-warzone-earth_1",
"version": "1",
"title": "Anomaly Warzone Earth",
"description": "Anomaly Warzone Earth",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/858be873-fb1f-47e5-ad34-657f40d3d156/1",
"onClickAction": "VISIT_URL",
"clickURL": "https://www.twitch.tv/directory/game/Anomaly:%20Warzone%20Earth/details"
},
{
"id": "YW5vbnltb3VzLWNoZWVyZXI7MTs=",
"setID": "anonymous-cheerer",
"version": "1",
"title": "Anonymous Cheerer",
"description": "Anonymous Cheerer",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/ca3db7f7-18f5-487e-a329-cd0b538ee979/1",
"onClickAction": null,
"clickURL": null
},
{
"id": "YXJjLXJhaWRlcnMtbGF1bmNoLTIwMjU7MTs=",
"setID": "arc-raiders-launch-2025",
"version": "1",
"title": "Arc Raiders Launch 2025",
"description": "This badge was earned by subscribing or gifting a sub to an Arc Raiders streamer during launch!",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/d4aa495f-a0e4-4ab4-b3eb-7c2ea573b03f/1",
"onClickAction": null,
"clickURL": null
},
{
"id": "YXJjYW5lLXNlYXNvbi0yLXByZW1pZXJlOzE7",
"setID": "arcane-season-2-premiere",
"version": "1",
"title": "Arcane Season 2 Premiere",
"description": "This badge was earned by watching the premiere of Arcane Season 2!",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/1d833bde-edc7-4d23-b7b6-ad5a13296675/1",
"onClickAction": null,
"clickURL": null
},
{
"id": "YXJ0aXN0LWJhZGdlOzE7",
"setID": "artist-badge",
"version": "1",
"title": "Artist",
"description": "Artist on this Channel",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/4300a897-03dc-4e83-8c0e-c332fee7057f/1",
"onClickAction": null,
"clickURL": null
},
{
"id": "YXNzYXNzaW5zLWNyZWVkLWJsYWNrLWZsYWctcmVzeW5jZWQ7MTs=",
"setID": "assassins-creed-black-flag-resynced",
"version": "1",
"title": "Assassin's Creed Black Flag Resynced",
"description": "This badge was earned by purchasing a subscription to an Assassin's Creed Black Flag Resynced streamer during the launch of the game!",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/393bfb62-dca0-4133-9a63-eb53b031b404/1",
"onClickAction": null,
"clickURL": null
},
{
"id": "dHdpdGNoYm90OzE7",
"setID": "twitchbot",
"version": "1",
"title": "AutoMod",
"description": "AutoMod",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/df9095f6-a8a0-4cc2-bb33-d908c0adffb8/1",
"onClickAction": "VISIT_URL",
"clickURL": "http://link.twitch.tv/automod_blog"
},
{
"id": "dHdpdGNoYm90OzI7",
"setID": "twitchbot",
"version": "2",
"title": "AutoMod",
"description": "Badge type for messages that come from the automated moderation system",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/8dbdfef5-0901-457f-a644-afa77ba176e5/1",
"onClickAction": null,
"clickURL": null
},
{
"id": "YXhpb20tdmVyZ2VfMTsxOw==",
"setID": "axiom-verge_1",
"version": "1",
"title": "Axiom Verge",
"description": "Axiom Verge",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/f209b747-45ee-42f6-8baf-ea7542633d10/1",
"onClickAction": "VISIT_URL",
"clickURL": "https://www.twitch.tv/directory/game/Axiom%20Verge/details"
},
{
"id": "YXlhbmU7MTs=",
"setID": "ayane",
"version": "1",
"title": "Ayane",
"description": "This badge was earned by purchasing a subscription to a Dead or Alive 6: Last Round streamer during Summer Drops Fest 2026!",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/471b7cc9-875f-445b-86f6-8009cee27843/1",
"onClickAction": null,
"clickURL": null
},
{
"id": "YmFieS1jaGljay1jaGF0LWJhZGdlOzE7",
"setID": "baby-chick-chat-badge",
"version": "1",
"title": "Baby Chick",
"description": "This badge was earned by subscribing or gifting a sub to a Minecraft streamer during the Tiny Takeover!",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/846a8d2c-b94e-4db6-8f8f-31885e3c187a/1",
"onClickAction": null,
"clickURL": null
},
{
"id": "YmF0dGxlY2hlZmJyaWdhZGVfMTsxOw==",
"setID": "battlechefbrigade_1",
"version": "1",
"title": "Battle Chef Brigade",
"description": "Battle Chef Brigade",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/24e32e67-33cd-4227-ad96-f0a7fc836107/1",
"onClickAction": "VISIT_URL",
"clickURL": "https://www.twitch.tv/directory/game/Battle%20Chef%20Brigade/details"
},
{
"id": "YmF0dGxlY2hlZmJyaWdhZGVfMjsxOw==",
"setID": "battlechefbrigade_2",
"version": "1",
"title": "Battle Chef Brigade",
"description": "Battle Chef Brigade",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/ef1e96e8-a0f9-40b6-87af-2977d3c004bb/1",
"onClickAction": "VISIT_URL",
"clickURL": "https://www.twitch.tv/directory/game/Battle%20Chef%20Brigade/details"
},
{
"id": "YmF0dGxlY2hlZmJyaWdhZGVfMzsxOw==",
"setID": "battlechefbrigade_3",
"version": "1",
"title": "Battle Chef Brigade",
"description": "Battle Chef Brigade",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/107ebb20-4fcd-449a-9931-cd3f81b84c70/1",
"onClickAction": "VISIT_URL",
"clickURL": "https://www.twitch.tv/directory/game/Battle%20Chef%20Brigade/details"
},
{
"id": "YmF0dGxlZmllbGQtNjsxOw==",
"setID": "battlefield-6",
"version": "1",
"title": "Battlefield 6",
"description": "This badge was earned by subscribing to a streamer playing Battlefield 6.",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/d7750af0-caca-47c5-b207-1af9be69ce1b/1",
"onClickAction": null,
"clickURL": null
},
{
"id": "YmF0dGxlcml0ZV8xOzE7",
"setID": "battlerite_1",
"version": "1",
"title": "Battlerite",
"description": "Battlerite",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/484ebda9-f7fa-4c67-b12b-c80582f3cc61/1",
"onClickAction": "VISIT_URL",
"clickURL": "https://www.twitch.tv/directory/game/Battlerite/details"
},
{
"id": "YmluZ2Jvbmdsb3ZlOzE7",
"setID": "bingbonglove",
"version": "1",
"title": "BingBongLove",
"description": "This badge was earned by tuning in to a PEAK stream for 15 minutes from February 13 - 28, 2026!",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/4ffa02fc-ae89-4557-95ca-b9fc65909bd0/1",
"onClickAction": null,
"clickURL": null
},
{
"id": "Yml0cy1sZWFkZXI7MTs=",
"setID": "bits-leader",
"version": "1",
"title": "Bits Leader 1",
"description": "Ranked as a top cheerer on this channel",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/8bedf8c3-7a6d-4df2-b62f-791b96a5dd31/1",
"onClickAction": "VISIT_URL",
"clickURL": "https://bits.twitch.tv"
},
{
"id": "Yml0cy1sZWFkZXI7Mjs=",
"setID": "bits-leader",
"version": "2",
"title": "Bits Leader 2",
"description": "Ranked as a top cheerer on this channel",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/f04baac7-9141-4456-a0e7-6301bcc34138/1",
"onClickAction": "VISIT_URL",
"clickURL": "https://bits.twitch.tv"
},
{
"id": "Yml0cy1sZWFkZXI7Mzs=",
"setID": "bits-leader",
"version": "3",
"title": "Bits Leader 3",
"description": "Ranked as a top cheerer on this channel",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/f1d2aab6-b647-47af-965b-84909cf303aa/1",
"onClickAction": "VISIT_URL",
"clickURL": "https://bits.twitch.tv"
},
{
"id": "YmxhY2stb3BzLTctZ2xvYmFsLWxhdW5jaDsxOw==",
"setID": "black-ops-7-global-launch",
"version": "1",
"title": "Black Ops 7 Global Launch",
"description": "This badge was earned by subscribing to a COD: Black Ops 7 streamer during launch!",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/e225aad6-3780-4bdc-ae38-48d3ab7dc36e/1",
"onClickAction": null,
"clickURL": null
},
{
"id": "cG93ZXItcmFuZ2VyczswOw==",
"setID": "power-rangers",
"version": "0",
"title": "Black Ranger",
"description": "Black Ranger",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/9edf3e7f-62e4-40f5-86ab-7a646b10f1f0/1",
"onClickAction": null,
"clickURL": null
},
{
"id": "Ymxvb20tYmFkZ2U7MTs=",
"setID": "bloom-badge",
"version": "1",
"title": "Bloom Badge Level 1",
"description": "Earn this badge for watching a clip, VOD or live stream 3 days a week. The badge upgrades weekly.",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/6c119c4d-adb3-4199-a0cb-3e09d7bc14c3/1",
"onClickAction": "VISIT_URL",
"clickURL": "https://help.twitch.tv/s/article/weekly-rewards"
},
{
"id": "Ymxvb20tYmFkZ2U7Mjs=",
"setID": "bloom-badge",
"version": "2",
"title": "Bloom Badge Level 2",
"description": "Earn this badge for watching a clip, VOD or live stream 3 days a week. The badge upgrades weekly.",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/45eea8e2-e0b3-4560-a32f-4a4cb5b0a061/1",
"onClickAction": "VISIT_URL",
"clickURL": "https://help.twitch.tv/s/article/weekly-rewards"
},
{
"id": "Ymxvb20tYmFkZ2U7Mzs=",
"setID": "bloom-badge",
"version": "3",
"title": "Bloom Badge Level 3",
"description": "Earn this badge for watching a clip, VOD or live stream 3 days a week. The badge upgrades weekly.",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/d7c40c24-02ca-4221-ae02-28402528a006/1",
"onClickAction": "VISIT_URL",
"clickURL": "https://help.twitch.tv/s/article/weekly-rewards"
},
{
"id": "Ymxvb20tYmFkZ2U7NDs=",
"setID": "bloom-badge",
"version": "4",
"title": "Bloom Badge Level 4",
"description": "Earn this badge for watching a clip, VOD or live stream 3 days a week. The badge upgrades weekly.",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/d52284fd-bf7a-4a94-85ad-e2f0427ec6db/1",
"onClickAction": "VISIT_URL",
"clickURL": "https://help.twitch.tv/s/article/weekly-rewards"
},
{
"id": "Ymxvc3NvbS1iYWRnZTsxOw==",
"setID": "blossom-badge",
"version": "1",
"title": "Blossom Badge Level 1",
"description": "Earn this badge for watching a clip, VOD or live stream 3 days a week. The badge upgrades weekly.",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/c255cb27-7e04-4be1-9dee-434e85523638/1",
"onClickAction": "VISIT_URL",
"clickURL": "https://help.twitch.tv/s/article/weekly-rewards"
},
{
"id": "Ymxvc3NvbS1iYWRnZTsyOw==",
"setID": "blossom-badge",
"version": "2",
"title": "Blossom Badge Level 2",
"description": "Earn this badge for watching a clip, VOD or live stream 3 days a week. The badge upgrades weekly.",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/d045617b-c37f-4643-9170-df05222cacc3/1",
"onClickAction": "VISIT_URL",
"clickURL": "https://help.twitch.tv/s/article/weekly-rewards"
},
{
"id": "Ymxvc3NvbS1iYWRnZTszOw==",
"setID": "blossom-badge",
"version": "3",
"title": "Blossom Badge Level 3",
"description": "Earn this badge for watching a clip, VOD or live stream 3 days a week. The badge upgrades weekly.",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/75fd2129-b0d6-4290-83f6-41740d1b7825/1",
"onClickAction": "VISIT_URL",
"clickURL": "https://help.twitch.tv/s/article/weekly-rewards"
},
{
"id": "Ymxvc3NvbS1iYWRnZTs0Ow==",
"setID": "blossom-badge",
"version": "4",
"title": "Blossom Badge Level 4",
"description": "Earn this badge for watching a clip, VOD or live stream 3 days a week. The badge upgrades weekly.",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/b00f8ff9-aeee-4c27-b974-5513f3abc91a/1",
"onClickAction": "VISIT_URL",
"clickURL": "https://help.twitch.tv/s/article/weekly-rewards"
},
{
"id": "cG93ZXItcmFuZ2VyczsxOw==",
"setID": "power-rangers",
"version": "1",
"title": "Blue Ranger",
"description": "Blue Ranger",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/1eeae8fe-5bc6-44ed-9c88-fb84d5e0df52/1",
"onClickAction": null,
"clickURL": null
},
{
"id": "Ym9yZGVybGFuZHMtNC0tLWM0c2g7MTs=",
"setID": "borderlands-4---c4sh",
"version": "1",
"title": "Borderlands 4 - C4SH",
"description": "This badge was earned by subscribing or gifting a sub to a Borderlands 4 streamer during the launch of C4SH!",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/42e19e2e-a07a-4446-862b-1b1567d344b8/1",
"onClickAction": null,
"clickURL": null
},
{
"id": "Ym9yZGVybGFuZHMtNC1iYWRnZS0tLXJpcHBlcjsxOw==",
"setID": "borderlands-4-badge---ripper",
"version": "1",
"title": "Borderlands 4 Badge - Ripper",
"description": "This user joined the ranks of the Rippers in Borderlands 4.",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/098219cb-48d8-4945-96a6-80594c7a90dd/1",
"onClickAction": null,
"clickURL": null
},
{
"id": "Ym9yZGVybGFuZHMtNC1iYWRnZS0tLXZhdWx0LXN5bWJvbDsxOw==",
"setID": "borderlands-4-badge---vault-symbol",
"version": "1",
"title": "Borderlands 4 Badge - Vault Symbol",
"description": "This user is rocking the Vault Symbol from Borderlands 4.",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/97eee27d-c87f-4afb-a020-04a9d04456df/1",
"onClickAction": null,
"clickURL": null
},
{
"id": "YnJhd2xoYWxsYXdvbzsxOw==",
"setID": "brawlhallawoo",
"version": "1",
"title": "BrawlhallAwoo",
"description": "This badge was earned by subscribing or gifting a sub to a Brawlhalla streamer during Brawlhalla Fest 2026!",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/a3e4f5e7-a6c9-4458-b8c4-f83a0f725566/1",
"onClickAction": null,
"clickURL": null
},
{
"id": "YnJhd2xoYWxsYV8xOzE7",
"setID": "brawlhalla_1",
"version": "1",
"title": "Brawlhalla",
"description": "Brawlhalla",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/bf6d6579-ab02-4f0a-9f64-a51c37040858/1",
"onClickAction": "VISIT_URL",
"clickURL": "https://www.twitch.tv/directory/game/Brawlhalla/details"
},
{
"id": "YnJvYWRjYXN0ZXI7MTs=",
"setID": "broadcaster",
"version": "1",
"title": "Broadcaster",
"description": "Broadcaster",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/5527c58c-fb7d-422d-b71b-f309dcb85cc1/1",
"onClickAction": null,
"clickURL": null
},
{
"id": "YnJva2VuLWFnZV8xOzE7",
"setID": "broken-age_1",
"version": "1",
"title": "Broken Age",
"description": "Broken Age",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/56885ed2-9a09-4c8e-8131-3eb9ec15af94/1",
"onClickAction": "VISIT_URL",
"clickURL": "https://www.twitch.tv/directory/game/Broken%20Age/details"
},
{
"id": "YnVic3ktNGQ7MTs=",
"setID": "bubsy-4d",
"version": "1",
"title": "Bubsy 4D!",
"description": "This badge was earned by watching Bubsy 4D on launch!",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/0652a149-9fc6-4a9b-82c4-31793c0e384a/1",
"onClickAction": null,
"clickURL": null
},
{
"id": "YnVic3ktdGhlLXdvb2xpZXNfMTsxOw==",
"setID": "bubsy-the-woolies_1",
"version": "1",
"title": "Bubsy: The Woolies Strike Back",
"description": "Bubsy: The Woolies Strike Back",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/c8129382-1f4e-4d15-a8d2-48bdddba9b81/1",
"onClickAction": "VISIT_URL",
"clickURL": "https://www.twitch.tv/directory/game/Bubsy:%20The%20Woolies%20Strike%20Back/details"
},
{
"id": "YnVkejsxOw==",
"setID": "budz",
"version": "1",
"title": "Budz",
"description": "This badge was earned by subbing to /studbudz during WNBA All-Star Weekend.",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/a7c72bfa-8758-4ba6-92ad-b31edcac1267/1",
"onClickAction": null,
"clickURL": null
},
{
"id": "YnVuZ2llLWZvdW5kYXRpb24tYWxseTsxOw==",
"setID": "bungie-foundation-ally",
"version": "1",
"title": "Bungie Foundation Ally",
"description": "This badge is awarded for being an ally of the Bungie Foundation!",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/f5f78a03-c73e-4ae4-86d3-a3bef7ceca6f/1",
"onClickAction": null,
"clickURL": null
},
{
"id": "YnVuZ2llLWZvdW5kYXRpb24tc3VwcG9ydGVyOzE7",
"setID": "bungie-foundation-supporter",
"version": "1",
"title": "Bungie Foundation Supporter",
"description": "This badge is awarded for being a supporter of the Bungie Foundation!",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/85cb4623-0dd6-4f41-b86e-765bc8ac367d/1",
"onClickAction": null,
"clickURL": null
},
{
"id": "Y2Rhd2ctY3ljbGV0aG9uLTUtYmFkZ2U7MTs=",
"setID": "cdawg-cyclethon-5-badge",
"version": "1",
"title": "CDawg Cyclethon 5 Badge",
"description": "Earned by watching CDawg's 5th Charity Cyclethon 2026!",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/bc969f36-b221-487f-ab5b-8ecb3a60ded2/1",
"onClickAction": "VISIT_URL",
"clickURL": "https://tiltify.com/@cdawgva/cyclethon-5"
},
{
"id": "Y3Jhc2g7MTs=",
"setID": "crash",
"version": "1",
"title": "CRASH",
"description": "This badge was earned by watching /PlaqueBoyMax during his CRASH THE PARTY live streams.",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/c194a433-5fb4-4f57-a5e7-64ff9f02bf24/1",
"onClickAction": null,
"clickURL": null
},
{
"id": "Y2hhdHRlci1jcy1nby0yMDIyOzE7",
"setID": "chatter-cs-go-2022",
"version": "1",
"title": "CS:GO Week Brazil 2022",
"description": "Chatted during CS:GO Week Brazil 2022",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/57b6bd6b-a1b5-4204-9e6c-eb8ed5831603/1",
"onClickAction": null,
"clickURL": null
},
{
"id": "Y3JlYXRvci1jcy1nby0yMDIyOzE7",
"setID": "creator-cs-go-2022",
"version": "1",
"title": "CS:GO Week Brazil 2022",
"description": "Streamed during CS:GO Week Brazil 2022",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/a2ea6df9-ac0a-4956-bfe9-e931f50b94fa/1",
"onClickAction": null,
"clickURL": null
},
{
"id": "cGF0aC1vZi1leGlsZS0yLWJhZGdlOzE7",
"setID": "path-of-exile-2-badge",
"version": "1",
"title": "Chaos Orb",
"description": "This badge was earned by subscribing to a streamer during Path of Exile 2's launch!",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/8bebe4ce-6c15-4746-8c33-42312c250ceb/1",
"onClickAction": null,
"clickURL": null
},
{
"id": "Ym90LWJhZGdlOzE7",
"setID": "bot-badge",
"version": "1",
"title": "Chat Bot",
"description": "This Bot has been added to the channel by the broadcaster.",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/3ffa9565-c35b-4cad-800b-041e60659cf2/1",
"onClickAction": null,
"clickURL": null
},
{
"id": "Y2l2LXZpaS0tLXRlc3Qtb2YtdGltZTsxOw==",
"setID": "civ-vii---test-of-time",
"version": "1",
"title": "Civ VII - Test of Time",
"description": "This badge was earned by subscribing or gifting a sub to a Civilization VII streamer during the Test of Time release!",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/eae24f68-7b45-4cf0-8854-d3e419006238/1",
"onClickAction": null,
"clickURL": null
},
{
"id": "Y2xhaXItb2JzY3VyLWV4cGVkaXRpb24tMzMtb25lLXllYXItYW5uaXZlcnNhcnk7MTs=",
"setID": "clair-obscur-expedition-33-one-year-anniversary",
"version": "1",
"title": "Clair Obscur: Expedition 33 One Year Anniversary",
"description": "This badge was earned by subscribing to a streamer in the Clair Obscur: Expedition 33 category during the anniversary campaign",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/44044991-46d1-436e-9ec8-d528a211f814/1",
"onClickAction": null,
"clickURL": null
},
{
"id": "Y2xpcC10aGUtaGFsbHM7MTs=",
"setID": "clip-the-halls",
"version": "1",
"title": "Clip the Halls",
"description": "For spreading the holiday cheer by sharing a clip to TikTok or YouTube during Twitch Holiday Hoopla 2024.",
"imageURL": "https://static-cdn.jtvnw.net/badges/v1/ce9e266a-f490-4fb2-9989-aee20036bfa5/1",
"onClickAction": "VISIT_URL",
"clickURL": "https://blog.twitch.tv/en/2024/12/02/twitch-holiday-hoopla/"