-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path2026-FANG 2026-BoothCredits.json
More file actions
1014 lines (1014 loc) · 38.5 KB
/
2026-FANG 2026-BoothCredits.json
File metadata and controls
1014 lines (1014 loc) · 38.5 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
{
"credits": [
{
"community": {
"id": 1,
"name": "Local Police Department",
"group_id": "grp_d594f074-ea42-4f47-bc68-b96f4ad2eda0",
"description": "Welcome the LPD, one of VRChats oldest and largest roleplaying groups bringing entertainment to public lobbies since 2018. The LPD hosts daily VRChat events where officers are assigned to a squad to create roleplay scenarios in public lobbies, themed around interactions with the public and emergency services. Due to the nature of improv, anything can happen during these events. From drug busts and shootouts, to checking mirror dwelling licenses. \n\nTo join the LPD check out the recruitment channel on our Discord at <color=#7289daff>discord.gg/lpd</color>. There you will find the application form as well as our handbook which is packed with all kinds of important information. Once accepted you will go through cadet training, before jumping into patrolling VRChat as an official LPD officer. When you have some experience under your belt you can take additional training to move up the ranks or specialize into other kinds of roleplay that we offer.\n\nPatrol officers will arrest people and bring them to the LPD station to take their mugshot that then gets posted on our discord server for everyone to see. If they choose to not come quietly we have our swat team, known as SLRT, to help persuade them. Once the suspect has been processed they will be handed over to our Corrections Officers and given a nice new home in the LPD Prison with all the other prisoners. And if anyone gets hurt in the process they can be treated by the LMT at our Hospital. To find out how you can help keep the streets of VRChat safe, join our Discord or follow us on Twitter @LPD_vr.",
"createdAt": "2024-05-22T19:38:25.000Z",
"updatedAt": "2026-03-03T15:49:46.000Z",
"deletedAt": null,
"logo_id": 134
},
"members": [
{
"username": "Karet"
},
{
"username": "pesky12"
}
]
},
{
"community": {
"id": 45,
"name": "Wolveeps Fan Club",
"group_id": "grp_561e2113-17dc-4e84-93d7-ea0e86cc8766",
"description": "Wolveeps Fan club is fun inspirational community around Wovleeps creatives works and content․ We hold events‚ hangouts‚ and meetups․",
"createdAt": "2024-05-22T16:17:15.000Z",
"updatedAt": "2024-06-20T15:58:46.000Z",
"deletedAt": null,
"logo_id": 130
},
"members": [
{
"username": "Wolveeps"
}
]
},
{
"community": {
"id": 406,
"name": "20nik",
"group_id": null,
"description": null,
"createdAt": "2026-01-16T22:10:18.000Z",
"updatedAt": "2026-01-16T22:10:18.000Z",
"deletedAt": null,
"logo_id": null
},
"members": [
{
"username": "20nik"
}
]
},
{
"community": {
"id": 412,
"name": "floofballvr",
"group_id": null,
"description": null,
"createdAt": "2026-01-16T22:10:22.000Z",
"updatedAt": "2026-01-16T22:10:22.000Z",
"deletedAt": null,
"logo_id": null
},
"members": [
{
"username": "FloofballVR"
}
]
},
{
"community": {
"id": 116,
"name": "WaterWolf",
"group_id": "grp_41df2df4-be4e-4a4e-be5e-eabb1425c4e5 ",
"description": "WaterWolf: WaterWolf is a community focused on building, exploring, and promoting immersive and enjoyable worlds through creating amazing assets, tools, technologies, avatars, and worlds and hosting some of the best events. The community offers a great opportunity to make new friends, explore and learn new skills, and make amazing memories together.",
"createdAt": "2024-06-12T21:54:26.000Z",
"updatedAt": "2024-06-21T02:20:00.000Z",
"deletedAt": null,
"logo_id": 217
},
"members": [
{
"username": "Commander A9"
},
{
"username": "Scientific Cat"
},
{
"username": "Engineerisaac"
}
]
},
{
"community": {
"id": 50,
"name": "Noved Squad",
"group_id": "grp_555e1cda-988e-45a3-8fd6-00335c214683",
"description": "Welcome to the Noved Squadǃ \n\nHome of the Noved Notes Podcastǃ\nA VRChat Podcast that goes into the amazing creators of VRChatǃ\n\nIn the Noved Squad Community‚ we do a bunch of hangouts‚ game nights‚ DJ Noved Party Nights‚ and collaborate to make amazing creations on VRChatǃ Overall we just like to have funǃ\n\nIf you are a creator ⁄ community rep that is interested in being on the podcast‚ join the discord and submit an applicationǃ",
"createdAt": "2024-05-22T20:37:01.000Z",
"updatedAt": "2025-03-28T05:57:15.000Z",
"deletedAt": null,
"logo_id": 171
},
"members": [
{
"username": "NovedPlayer"
}
]
},
{
"community": {
"id": 419,
"name": "Chayahalfdragon",
"group_id": null,
"description": null,
"createdAt": "2026-01-16T22:10:26.000Z",
"updatedAt": "2026-01-16T22:10:26.000Z",
"deletedAt": null,
"logo_id": null
},
"members": [
{
"username": "chayahalfdragon"
}
]
},
{
"community": {
"id": 410,
"name": "RoyalGryphon",
"group_id": null,
"description": null,
"createdAt": "2026-01-16T22:10:21.000Z",
"updatedAt": "2026-01-16T22:10:21.000Z",
"deletedAt": null,
"logo_id": null
},
"members": [
{
"username": "Royalty"
}
]
},
{
"community": {
"id": 417,
"name": "BriannaBoonana",
"group_id": null,
"description": null,
"createdAt": "2026-01-16T22:10:25.000Z",
"updatedAt": "2026-01-16T22:10:25.000Z",
"deletedAt": null,
"logo_id": null
},
"members": [
{
"username": "BriannaBoonana"
}
]
},
{
"community": {
"id": 414,
"name": "The Steve",
"group_id": null,
"description": null,
"createdAt": "2026-01-16T22:10:23.000Z",
"updatedAt": "2026-01-16T22:10:23.000Z",
"deletedAt": null,
"logo_id": null
},
"members": [
{
"username": "TheSteve"
}
]
},
{
"community": {
"id": 426,
"name": "EvanTheFloydian",
"group_id": null,
"description": null,
"createdAt": "2026-01-16T22:10:30.000Z",
"updatedAt": "2026-01-16T22:10:30.000Z",
"deletedAt": null,
"logo_id": null
},
"members": [
{
"username": "EvanTheFloydian"
}
]
},
{
"community": {
"id": 41,
"name": "CozyCon Online",
"group_id": "grp_497b720f-cdee-44d3-b724-f6b4dc334643",
"description": "CozyCon is a free yearly multi-fandom virtual convention on Discord/VRChat/Twitch that runs in September, but also hosts monthly events. We have skilled vendors, DJs and Panelists every year, sweet themed merch designed by our artists, and year-round community space to chat, organize games, share your creative works and much more.",
"createdAt": "2024-05-22T19:38:25.000Z",
"updatedAt": "2025-05-14T18:16:24.000Z",
"deletedAt": null,
"logo_id": 165
},
"members": [
{
"username": "LilitheLotor"
}
]
},
{
"community": {
"id": 175,
"name": "Community Oasis",
"group_id": "grp_e5606ba8-309e-466c-aeb7-237b1867756d",
"description": "I make furniture and 3D models for Worlds",
"createdAt": "2025-02-26T14:35:46.000Z",
"updatedAt": "2025-05-24T00:44:45.000Z",
"deletedAt": null,
"logo_id": 496
},
"members": [
{
"username": "emilhauge"
}
]
},
{
"community": {
"id": 427,
"name": "Pawlygon",
"group_id": null,
"description": null,
"createdAt": "2026-01-16T22:10:31.000Z",
"updatedAt": "2026-01-16T22:10:31.000Z",
"deletedAt": null,
"logo_id": null
},
"members": [
{
"username": "nekonny"
}
]
},
{
"community": {
"id": 62,
"name": "Metaverse Degen",
"group_id": "grp_c47b3db4-7ea8-49c7-a68f-f9ab0dcb7d28",
"description": "A podcast⁄talk show in vrchat where are interview the various personalities and communities from the platform Vrchat including club owners‚ djs‚ tiktokers‚ vtubers world and avatar creators and more․ Featuring˸ dirtyraptor & LionTurtle",
"createdAt": "2024-05-23T11:53:07.000Z",
"updatedAt": "2024-06-21T01:24:33.000Z",
"deletedAt": null,
"logo_id": 180
},
"members": [
{
"username": "Metaverse Degen"
}
]
},
{
"community": {
"id": 9,
"name": "1st Weimar Republic",
"group_id": "grp_c4b5ba45-b82e-4ee6-8b2e-c481f88ced93",
"description": "Welcome to the 1st Weimar Republic!\n\nWe’re an alternate history VRChat roleplay group based around 1920's Interwar Germany.\n\nWe host weekly immersive RP events in the Weimar Republic;\nDaily Life of Soldiers\nCombat RP\nMilitary Training\nCeremonies\n\nFrom fighting in the street and countryside against uprisings to simply living out the daily life of a soldier, our events tell an ongoing narrative influenced by all of our members. Want to know more? If Immersive RP, Alt-History or History, and an interesting story appeal to you, then the 1st Weimar Republic is the place for you!\n\nhttps://discord.gg/ZMP49H3zSY\n\nJoin now, become part of our growing community, and leave your mark upon the Republic!",
"createdAt": "2024-05-22T19:38:25.000Z",
"updatedAt": "2025-02-07T20:32:57.000Z",
"deletedAt": null,
"logo_id": 156
},
"members": [
{
"username": "Gustav#7720"
}
]
},
{
"community": {
"id": 428,
"name": "TransPaws",
"group_id": null,
"description": null,
"createdAt": "2026-01-16T22:10:31.000Z",
"updatedAt": "2026-01-16T23:49:50.000Z",
"deletedAt": null,
"logo_id": null
},
"members": [
{
"username": "transpaws"
},
{
"username": "Akira"
}
]
},
{
"community": {
"id": 48,
"name": "The Bakery",
"group_id": "grp_e637632e-e9cb-4a2c-96e7-d5eb2bb634c8",
"description": "The Bakery is a group of artists that primarily focus on digital art, 3d animation, and virtual reality environments, primarily based in VRChat. We enjoy creating stories with our art, and giving people something to enjoy!",
"createdAt": "2024-05-22T20:15:36.000Z",
"updatedAt": "2025-03-28T06:08:58.000Z",
"deletedAt": null,
"logo_id": 169
},
"members": [
{
"username": "Wobblins"
}
]
},
{
"community": {
"id": 423,
"name": "Meia",
"group_id": null,
"description": null,
"createdAt": "2026-01-16T22:10:28.000Z",
"updatedAt": "2026-01-16T22:10:28.000Z",
"deletedAt": null,
"logo_id": null
},
"members": [
{
"username": "-Meia-"
}
]
},
{
"community": {
"id": 434,
"name": "Scout",
"group_id": null,
"description": null,
"createdAt": "2026-01-25T21:01:37.000Z",
"updatedAt": "2026-01-25T21:01:37.000Z",
"deletedAt": null,
"logo_id": null
},
"members": [
{
"username": "MapleMoose"
}
]
},
{
"community": {
"id": 401,
"name": "Ferin Lumenax",
"group_id": null,
"description": null,
"createdAt": "2026-01-16T22:10:15.000Z",
"updatedAt": "2026-01-16T22:10:15.000Z",
"deletedAt": null,
"logo_id": null
},
"members": [
{
"username": "Ferin_Lumenax"
}
]
},
{
"community": {
"id": 338,
"name": "Wolfie's Hangout",
"group_id": "grp_d8d23dde-5339-498c-9329-bbebc59f1af1",
"description": "A safe place for furries and non furries alike",
"createdAt": "2025-05-18T23:34:55.000Z",
"updatedAt": "2025-05-24T01:34:19.000Z",
"deletedAt": null,
"logo_id": 753
},
"members": [
{
"username": "wolfieshangout"
}
]
},
{
"community": {
"id": 425,
"name": "Bloomin",
"group_id": null,
"description": null,
"createdAt": "2026-01-16T22:10:30.000Z",
"updatedAt": "2026-01-16T22:10:30.000Z",
"deletedAt": null,
"logo_id": null
},
"members": [
{
"username": "Bloomin"
}
]
},
{
"community": {
"id": 139,
"name": "VRelium",
"group_id": "grp_39a94c64-9712-4680-9758-db25fde037f4",
"description": "VRelium is a dynamic and inclusive community within VRChat‚ built around a shared passion for music and creativity․ We are dedicated to supporting and showcasing the talents of virtual artists‚ DJs‚ and performers‚ providing a platform for them to connect with audiences and share their craft in meaningful ways.\n\nAt the heart of VRelium is the belief that music has the power to bring people together‚ and we aim to create unforgettable experiences that inspire connection and collaboration․ Through our events‚ we celebrate the diverse and ever-evolving virtual music scene‚ from intimate performances to large-scale festivals․\n\n\nCharity is a key part of what we do‚ as we believe in using our platform to make a positive impact․ By hosting charity-focused festivals‚ we bring the community together to support important causes and demonstrate the potential of VR to create real-world change․\n\n\nVRelium is more than just a place for music, its a space for building friendships‚ exploring creativity‚ and shaping the future of VR entertainment․ \n\nWhether youre an artist‚ a performer‚ or someone who simply loves music‚ VRelium is a welcoming space where you can be part of something bigger",
"createdAt": "2024-06-23T11:37:37.000Z",
"updatedAt": "2025-04-24T12:33:50.000Z",
"deletedAt": null,
"logo_id": 341
},
"members": [
{
"username": "goldielounge"
},
{
"username": "djredpanda"
},
{
"username": "DJ Red Panda"
}
]
},
{
"community": {
"id": 263,
"name": "Onix Angel Creations",
"group_id": "grp_2f961411-b179-4907-a8fd-c55a20b5a52e",
"description": "A SFW and LGBTQIA+ community for meeting people‚ making friends‚ creating art and exploring interests",
"createdAt": "2025-03-27T18:56:30.000Z",
"updatedAt": "2025-06-01T06:12:51.000Z",
"deletedAt": null,
"logo_id": 851
},
"members": [
{
"username": "OnixAngel"
}
]
},
{
"community": {
"id": 399,
"name": "Rafi77",
"group_id": null,
"description": null,
"createdAt": "2026-01-16T22:10:14.000Z",
"updatedAt": "2026-01-16T22:10:14.000Z",
"deletedAt": null,
"logo_id": null
},
"members": [
{
"username": "Rafi77"
}
]
},
{
"community": {
"id": 29,
"name": "Mythos Makers",
"group_id": "grp_60db80f0-2d88-47a0-8e74-a3d1d63a56b5",
"description": "Mythos Makers is a general entertainment and online media content creation site featuring several storytellers and creators with several backgrounds including Comic Writing and Drawing, General Writing, Video Game Development, Video Creation, Podcast Creation, and so on so forth.",
"createdAt": "2024-05-22T19:38:25.000Z",
"updatedAt": "2025-04-06T11:30:29.000Z",
"deletedAt": null,
"logo_id": 532
},
"members": [
{
"username": "John Coday"
}
]
},
{
"community": {
"id": 409,
"name": "Inkblitz",
"group_id": null,
"description": null,
"createdAt": "2026-01-16T22:10:20.000Z",
"updatedAt": "2026-01-16T22:10:20.000Z",
"deletedAt": null,
"logo_id": null
},
"members": [
{
"username": "Inkblitz"
}
]
},
{
"community": {
"id": 438,
"name": "SturmWolf",
"group_id": null,
"description": null,
"createdAt": "2026-02-02T17:41:24.000Z",
"updatedAt": "2026-02-02T17:41:24.000Z",
"deletedAt": null,
"logo_id": null
},
"members": [
{
"username": "SturmWolf"
}
]
},
{
"community": {
"id": 217,
"name": "Creative Impressions",
"group_id": "grp_b69ca680-015c-43c5-895f-5450fc248a3d",
"description": "Creative Impressions is an artistic community aims to bring all of the incredibly talented artists within the VR community together! We aim to create a fun and safe space for artists of all kinds to gather and share their work within our channels and exhibition events, and we hope to inspire anyone and everyone that comes across us.\n\nWe offer an array of different artistic channels in our discord server for people to chat and share their works, but we also host a handful of different common events such as R&R and Art studio!\n We plan to host 1 big gallery event a year that will feature many different types of artwork of all different types of media!",
"createdAt": "2025-03-27T18:56:30.000Z",
"updatedAt": "2025-06-07T21:11:57.000Z",
"deletedAt": null,
"logo_id": 501
},
"members": [
{
"username": "Stellr"
}
]
},
{
"community": {
"id": 439,
"name": "Eglantine",
"group_id": null,
"description": null,
"createdAt": "2026-02-02T17:41:24.000Z",
"updatedAt": "2026-02-02T17:41:24.000Z",
"deletedAt": null,
"logo_id": null
},
"members": [
{
"username": "Eglantine"
}
]
},
{
"community": {
"id": 436,
"name": "Furnal Equinox",
"group_id": null,
"description": null,
"createdAt": "2026-02-02T17:41:22.000Z",
"updatedAt": "2026-02-04T03:20:34.000Z",
"deletedAt": null,
"logo_id": null
},
"members": [
{
"username": "Commander A9"
}
]
},
{
"community": {
"id": 178,
"name": "Comrades and Ops",
"group_id": "grp_31cb7da1-17be-4f84-97f0-182e5a0852c6",
"description": "Comrades And Ops is a gaming and social group which brings people together in the name of fun, good times, and friendship. Our signature event is Thursday Games, a 2-hour gaming session in VRChat held every Thursday at 6pm USA EST. We host and play various games outside of VRChat and encourage participation in major events throughout VRChat and other gaming communities. All members are invited to host their own gaming or social event. Time to rock and roll!",
"createdAt": "2025-03-05T15:49:58.000Z",
"updatedAt": "2025-04-12T16:32:32.000Z",
"deletedAt": null,
"logo_id": 558
},
"members": [
{
"username": "Commander A9"
}
]
},
{
"community": {
"id": 435,
"name": "RaeBruner",
"group_id": null,
"description": null,
"createdAt": "2026-02-02T17:41:22.000Z",
"updatedAt": "2026-02-02T17:41:22.000Z",
"deletedAt": null,
"logo_id": null
},
"members": [
{
"username": "raebruner"
}
]
},
{
"community": {
"id": 262,
"name": "Kudalyn's Creations",
"group_id": "grp_8b9e3ab9-6a60-42f2-b491-a0cd4bcaa915",
"description": "Hi! I'm Kuda, and I make customizable furry models for VRChat, along with various clothing and other accessories for them. I also host once a month meetups for my avatar community , so folks can show off what they've been working on, and bring their friends along to chill!",
"createdAt": "2025-03-27T18:56:30.000Z",
"updatedAt": "2025-06-01T06:48:40.000Z",
"deletedAt": null,
"logo_id": 853
},
"members": [
{
"username": "Kudalyn"
}
]
},
{
"community": {
"id": 167,
"name": "Raujinn's Avatar Workshop",
"group_id": "grp_492db67f-ecf5-4850-ae31-7469fa3958c0",
"description": "I make from-scratch original avatars and avatar assets, both for public and for sale.",
"createdAt": "2024-10-16T20:20:06.000Z",
"updatedAt": "2025-04-07T01:26:07.000Z",
"deletedAt": null,
"logo_id": 549
},
"members": [
{
"username": "raujinn"
}
]
},
{
"community": {
"id": 437,
"name": "RuneFox",
"group_id": null,
"description": null,
"createdAt": "2026-02-02T17:41:23.000Z",
"updatedAt": "2026-02-02T17:41:23.000Z",
"deletedAt": null,
"logo_id": null
},
"members": [
{
"username": "RuneFox237"
}
]
},
{
"community": {
"id": 408,
"name": "HELbite",
"group_id": null,
"description": null,
"createdAt": "2026-01-16T22:10:19.000Z",
"updatedAt": "2026-01-16T22:10:19.000Z",
"deletedAt": null,
"logo_id": null
},
"members": [
{
"username": "HELbite"
}
]
},
{
"community": {
"id": 422,
"name": "WhenSnakesSing",
"group_id": null,
"description": null,
"createdAt": "2026-01-16T22:10:28.000Z",
"updatedAt": "2026-01-16T22:10:28.000Z",
"deletedAt": null,
"logo_id": null
},
"members": [
{
"username": "WhenSnakesSing"
}
]
},
{
"community": {
"id": 415,
"name": "Voxian",
"group_id": null,
"description": null,
"createdAt": "2026-01-16T22:10:24.000Z",
"updatedAt": "2026-01-16T22:10:24.000Z",
"deletedAt": null,
"logo_id": null
},
"members": [
{
"username": "Voxian"
}
]
},
{
"community": {
"id": 416,
"name": "PDB",
"group_id": null,
"description": null,
"createdAt": "2026-01-16T22:10:24.000Z",
"updatedAt": "2026-01-16T22:10:24.000Z",
"deletedAt": null,
"logo_id": null
},
"members": [
{
"username": "PDB"
}
]
},
{
"community": {
"id": 418,
"name": "Ayame Vamileon",
"group_id": null,
"description": null,
"createdAt": "2026-01-16T22:10:25.000Z",
"updatedAt": "2026-01-16T22:10:25.000Z",
"deletedAt": null,
"logo_id": null
},
"members": [
{
"username": "ayame_vamileon_"
}
]
},
{
"community": {
"id": 380,
"name": "Mega Man Faded Light",
"group_id": null,
"description": null,
"createdAt": "2025-09-02T04:48:59.000Z",
"updatedAt": "2025-10-03T22:28:24.000Z",
"deletedAt": null,
"logo_id": null
},
"members": [
{
"username": "Estefanoida"
}
]
},
{
"community": {
"id": 429,
"name": "Mokuri Project",
"group_id": null,
"description": null,
"createdAt": "2026-01-21T18:22:48.000Z",
"updatedAt": "2026-01-21T18:22:48.000Z",
"deletedAt": null,
"logo_id": null
},
"members": [
{
"username": "HayaTikaze"
}
]
},
{
"community": {
"id": 407,
"name": "Catipopurr",
"group_id": null,
"description": null,
"createdAt": "2026-01-16T22:10:19.000Z",
"updatedAt": "2026-01-16T22:10:19.000Z",
"deletedAt": null,
"logo_id": null
},
"members": [
{
"username": "Catipopurr"
}
]
},
{
"community": {
"id": 403,
"name": "Bucker Fuskyote",
"group_id": null,
"description": null,
"createdAt": "2026-01-16T22:10:16.000Z",
"updatedAt": "2026-01-16T22:10:16.000Z",
"deletedAt": null,
"logo_id": null
},
"members": [
{
"username": "MooglePower"
}
]
},
{
"community": {
"id": 405,
"name": "Waranto",
"group_id": null,
"description": null,
"createdAt": "2026-01-16T22:10:18.000Z",
"updatedAt": "2026-01-16T22:10:18.000Z",
"deletedAt": null,
"logo_id": null
},
"members": [
{
"username": "Waranto"
}
]
},
{
"community": {
"id": 318,
"name": "DegenTech Inc",
"group_id": "grp_b2a19685-c53e-4c5a-9503-744a5373bf2c",
"description": "Group of professional furries working in STEMM fields (Science, Technology, Engineering, Mathematics, Medical). We hangout in VR and organize on Discord! Check out some of the techiest nerds you'll meet on VRchat!",
"createdAt": "2025-04-24T00:01:11.000Z",
"updatedAt": "2025-05-09T20:03:11.000Z",
"deletedAt": null,
"logo_id": 641
},
"members": [
{
"username": "degentech"
}
]
},
{
"community": {
"id": 421,
"name": "SylviaCrisp",
"group_id": null,
"description": null,
"createdAt": "2026-01-16T22:10:27.000Z",
"updatedAt": "2026-01-16T22:10:27.000Z",
"deletedAt": null,
"logo_id": null
},
"members": [
{
"username": "SylviaCrisp"
}
]
},
{
"community": {
"id": 431,
"name": "OttFox",
"group_id": null,
"description": null,
"createdAt": "2026-01-25T21:01:35.000Z",
"updatedAt": "2026-01-25T21:01:35.000Z",
"deletedAt": null,
"logo_id": null
},
"members": [
{
"username": "HmanBdude"
}
]
},
{
"community": {
"id": 441,
"name": "Estefanoida's 2D & 3D Art",
"group_id": null,
"description": null,
"createdAt": "2026-02-06T18:00:04.000Z",
"updatedAt": "2026-02-06T18:00:04.000Z",
"deletedAt": null,
"logo_id": null
},
"members": [
{
"username": "Estefanoida"
}
]
},
{
"community": {
"id": 129,
"name": "Soaring Fitness",
"group_id": "grp_465007ac-1c72-40d3-aa78-01c9b6075ffa",
"description": "We are a VR-based workout group, focused on being freely accessible. Our hard working team of Volunteers offer their time and experience to make it all possible. Our Certified Personal Trainers work with our Volunteer Instructors to bring you workouts 7 days a week! We believe good health and fitness should not be gated behind a paywall! ",
"createdAt": "2024-06-13T22:54:39.000Z",
"updatedAt": "2024-06-21T02:32:12.000Z",
"deletedAt": null,
"logo_id": 230
},
"members": [
{
"username": "Sapphicawoo"
},
{
"username": "Akira_Edits"
}
]
},
{
"community": {
"id": 194,
"name": "Corbelle's Music Festivals & Sessions",
"group_id": "grp_adb24b4b-5354-4cc0-beb0-0d9dcfd54dde",
"description": "VRChat's Largest Live Music Community\n\nThis group is a place to gather all friends‚ fans and wanderers for our massive music festivalsǃ Usually we host an event once a month either under our own banner or for a partnering community․ All shows have free admission and will be Quest-compatible․\n\nFor professional musicians ⁄ DJ's who would like to apply for one of the bigger shows throughout the year‚ DM me on Discord for the application process․ The same goes for VRChat or IRL community leaders who want us to cater a festival for your communityǃ",
"createdAt": "2025-03-05T16:01:18.000Z",
"updatedAt": "2025-06-13T23:50:16.000Z",
"deletedAt": null,
"logo_id": 1070
},
"members": [
{
"username": "Corbelle"
},
{
"username": "Lurkinglotus"
}
]
},
{
"community": {
"id": 404,
"name": "DrownsInItalian",
"group_id": null,
"description": null,
"createdAt": "2026-01-16T22:10:17.000Z",
"updatedAt": "2026-01-16T22:10:17.000Z",
"deletedAt": null,
"logo_id": null
},
"members": [
{
"username": "Drowns"
}
]
},
{
"community": {
"id": 247,
"name": "Furry Hideout",
"group_id": "grp_ce516cb8-3dfa-4ea3-9c0a-ea07606d270b",
"description": "Here at the 'Hideout we pride ourselves on our relaxed atmosphere‚ and large community of friendly furs and non furs alike‚ we hope you enjoy your stay - and if you like what you see‚ how about joining our discord ? Here you can keep up to date with the latest happenings in world‚ events‚ and much more․ Discord․gg⁄FurryHideout",
"createdAt": "2025-03-27T18:56:30.000Z",
"updatedAt": "2025-06-07T22:39:14.000Z",
"deletedAt": null,
"logo_id": 1057
},
"members": [
{
"username": "Lt_Shadow"
}
]
},
{
"community": {
"id": 364,
"name": "ValenVRC",
"group_id": "grp_32fd99ba-2ec3-4408-9dce-74cf4ea0b713",
"description": "I'm a freelancer developer and vrchat mapmaker from Argentina, I specialize in the creation of assets and systems that use U#!",
"createdAt": "2025-05-18T23:34:55.000Z",
"updatedAt": "2025-05-24T00:58:02.000Z",
"deletedAt": null,
"logo_id": 738
},
"members": [
{
"username": "valenvrc"
}
]
},
{
"community": {
"id": 440,
"name": "Sacred's Burrow",
"group_id": null,
"description": null,
"createdAt": "2026-02-03T23:39:22.000Z",
"updatedAt": "2026-02-03T23:39:22.000Z",
"deletedAt": null,
"logo_id": null
},
"members": [
{
"username": "Sacred"
}
]
},
{
"community": {
"id": 432,
"name": "ReinaStorm",
"group_id": null,