-
Notifications
You must be signed in to change notification settings - Fork 507
/
legislators-social-media.yaml
4144 lines (4144 loc) · 91.5 KB
/
legislators-social-media.yaml
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
# Please note before submitting pull requests:
#
# Our policy is to accept only social media accounts that are run as
# part of the Member of Congress's "official" legislative role. In other
# words, taxpayer-funded accounts, and not campaign or personal
# accounts. There are actually strict rules separating these two
# functions: an account used to support a legislator's political
# campaign may not be supported using their official taxpayer-supported
# funds, for example.
#
# When in doubt, we verify accounts by looking at a legislator's
# official website and seeing what they link to. Kelly Ayotte, for
# example, has everything but Twitter at the top of her Senate home
# page, and @KellyAyotte doesn't link to her Senate home page. This
# appears to be her campaign account.
#
# When it's ambiguous, we'll actually make phone calls to the office and
# have the press staff confirm their official account.
- id:
bioguide: R000600
thomas: '02222'
govtrack: 412664
social:
twitter: RepAmata
facebook: aumuaamata
youtube_id: UCGdrLQbt1PYDTPsampx4t1A
twitter_id: 3026622545
- id:
bioguide: Y000064
thomas: '02019'
govtrack: 412428
social:
twitter: SenToddYoung
facebook: SenatorToddYoung
youtube: RepToddYoung
youtube_id: UCuknj4PGn91gHDNAfboZEgQ
twitter_id: 234128524
instagram: sentoddyoung
- id:
bioguide: E000295
thomas: '02283'
govtrack: 412667
social:
twitter: SenJoniErnst
facebook: senjoniernst
youtube_id: UCLwrmtF_84FIcK3TyMs4MIw
instagram: senjoniernst
instagram_id: 1582702853
twitter_id: 2856787757
- id:
bioguide: T000476
thomas: '02291'
govtrack: 412668
social:
twitter: SenThomTillis
facebook: SenatorThomTillis
youtube_id: UCUD9VGV4SSGWjGdbn37Ea2w
twitter_id: 2964174789
instagram: senthomtillis
- id:
bioguide: W000809
thomas: '01991'
govtrack: 412402
social:
twitter: Rep_SteveWomack
facebook: RepSteveWomack
youtube: CongressmanWomack
youtube_id: UCXJbUDLYX-wGIhRuN66hqZw
twitter_id: 234469322
- id:
bioguide: W000808
thomas: '02004'
govtrack: 412412
social:
twitter: RepWilson
facebook: RepWilson
youtube: repfredericawilson
youtube_id: UCP5QBhng_lHv-vJgE_h7lpA
twitter_id: 234014087
instagram: repwilson
- id:
bioguide: W000806
thomas: '02002'
govtrack: 412410
social:
twitter: RepWebster
facebook: RepWebster
youtube: repdanwebster
youtube_id: UCCoX4VdU7U11eGEA0lbRtLw
twitter_id: 281540744
- id:
bioguide: W000805
thomas: '01897'
govtrack: 412321
social:
twitter: MarkWarner
facebook: MarkRWarner
youtube: SenatorMarkWarner
youtube_id: UCwyivNlEGf4sGd1oDLfY5jw
instagram: senatorwarner
instagram_id: 515327940
twitter_id: 7429102
- id:
bioguide: W000804
thomas: '01886'
govtrack: 412255
social:
twitter: RobWittman
facebook: RepRobWittman
youtube: RobWittman
youtube_id: UCIqIb-OaTbkIdU426eYIdPg
twitter_id: 15356407
instagram: reprobwittman
- id:
bioguide: W000802
thomas: '01823'
govtrack: 412247
social:
twitter: SenWhitehouse
facebook: SenatorWhitehouse
youtube: SenatorWhitehouse
youtube_id: UCnG0N70SNBkNqvIMLodPTIA
instagram: SenWhitehouse
twitter_id: 242555999
- id:
bioguide: W000800
thomas: '01879'
govtrack: 412239
social:
facebook: PeterWelch
youtube: reppeterwelch
youtube_id: UC0YfApJx6qNaAQ-ir93U8xA
twitter: PeterWelch
instagram: reppeterwelch
instagram_id: 1559860900
twitter_id: 1410590874
- id:
bioguide: W000798
thomas: '01855'
govtrack: 412213
social:
twitter: RepWalberg
facebook: RepWalberg
youtube: RepWalberg
youtube_id: UChpf3_3Wn8f3qSJbsYXrhvg
twitter_id: 237862972
instagram: repwalberg
- id:
bioguide: W000797
thomas: '01777'
govtrack: 400623
social:
twitter: RepDWStweets
facebook: RepDWS
youtube: RepWassermanSchultz
youtube_id: UCfHQiJVvMlYbVAxrMSLdO4w
instagram: RepDWSTweets
twitter_id: 1140648348
- id:
bioguide: W000795
thomas: '01688'
govtrack: 400433
social:
facebook: JoeWilson
youtube: RepJoeWilson
twitter: RepJoeWilson
youtube_id: UC3aR1B8m7Z1uycO65yDnpCg
instagram: repjoewilson
instagram_id: 519685522
twitter_id: 254082173
- id:
bioguide: W000779
thomas: '01247'
govtrack: 300100
social:
twitter: RonWyden
youtube: senronwyden
youtube_id: UCsd3UEaoLoqX60P88BdpGGw
instagram: ronwyden
instagram_id: 9443881
twitter_id: 250188760
- id:
bioguide: W000437
thomas: '01226'
govtrack: 400432
social:
twitter: SenatorWicker
facebook: SenatorWicker
youtube: SenatorWicker
youtube_id: UCIlKHiTjSkcQP_knBcXHWSg
instagram: senatorwicker
instagram_id: 367948073
twitter_id: 264219447
- id:
bioguide: W000187
thomas: '01205'
govtrack: 400422
social:
twitter: RepMaxineWaters
facebook: MaxineWaters
youtube: MaxineWaters
youtube_id: UCOQ2js1VYFlo74n7Ns8WsLQ
twitter_id: 36686040
instagram: repmaxinewaters
- id:
bioguide: V000128
thomas: '01729'
govtrack: 400415
social:
twitter: ChrisVanHollen
facebook: chrisvanhollen
youtube: RepChrisVanHollen
youtube_id: UCkpfJWu1N9Okd6PE_NidtBQ
instagram: chrisvanhollen
instagram_id: 268595235
twitter_id: 18137749
- id:
bioguide: V000081
thomas: '01184'
govtrack: 400416
social:
twitter: NydiaVelazquez
facebook: '8037068318'
youtube: nydiavelazquez
youtube_id: UCqMKPkKeeHFOOiZ9vxhXGVg
twitter_id: 164369297
- id:
bioguide: T000469
thomas: '01942'
govtrack: 412319
social:
twitter: RepPaulTonko
facebook: reppaultonko
youtube: reppaultonko
youtube_id: UC3P2SGFmmuCYRsjeso0hOQQ
twitter_id: 84119348
instagram: reppaultonko
- id:
bioguide: T000468
thomas: '01940'
govtrack: 412318
social:
twitter: RepDinaTitus
facebook: CongresswomanTitus
youtube: CongresswomanTitus
youtube_id: UC_US4jNqECuMSNrB7yVCbbw
instagram: dinatitusnv
instagram_id: 1110185253
twitter_id: 122174004
- id:
bioguide: T000467
thomas: '01952'
govtrack: 412317
social:
twitter: CongressmanGT
facebook: CongressmanGT
youtube: CongressmanGT
youtube_id: UCNWX7lbWWvnNdzVMFI9DRiQ
twitter_id: 18967498
instagram: congressman_gt
- id:
bioguide: T000464
thomas: '01829'
govtrack: 412244
social:
facebook: senatortester
youtube: senatorjontester
youtube_id: UCgXAF-CON1coZFMxQkfj0fg
twitter: SenatorTester
twitter_id: 515822213
- id:
bioguide: T000463
thomas: '01741'
govtrack: 400411
social:
twitter: RepMikeTurner
facebook: RepMikeTurner
youtube: CongressmanTurner
youtube_id: UC-6Ss-aZ3OPisf9GdVGtN8g
twitter_id: 51228911
instagram: repmiketurner
- id:
bioguide: T000460
thomas: '01593'
govtrack: 400403
social:
twitter: RepThompson
facebook: RepMikeThompson
youtube: CongressmanMThompson
youtube_id: UC6pGbtqHZYZmScFGSz5bbdg
twitter_id: 303861808
mastodon: '@[email protected]'
- id:
bioguide: T000250
thomas: '01534'
govtrack: 400546
social:
twitter: SenJohnThune
youtube: johnthune
youtube_id: UCRu6lpRfxhkDGUrKDgQNZYQ
twitter_id: 296361085
instagram: senjohnthune
- id:
bioguide: T000193
thomas: '01151'
govtrack: 400402
social:
twitter: BennieGThompson
facebook: CongressmanBennieGThompson
youtube: RepBennieThompson
youtube_id: UCzt2pBxh0dI24kYrWretXRw
instagram: benniegthompson
instagram_id: 347410575
twitter_id: 82453460
- id:
bioguide: S001189
thomas: '02009'
govtrack: 412417
social:
twitter: AustinScottGA08
facebook: RepAustinScott
youtube: RepAustinScott
youtube_id: UC5M7eKHKQStktMyjieiHYZQ
twitter_id: 234797704
- id:
bioguide: S001185
thomas: '01988'
govtrack: 412396
social:
twitter: RepTerriSewell
facebook: RepSewell
youtube: RepSewell
youtube_id: UCHkEHtfrfUWOFtbUFQTQH7Q
twitter_id: 381152398
- id:
bioguide: S001184
thomas: '02056'
govtrack: 412471
social:
twitter: SenatorTimScott
facebook: SenatorTimScott
youtube: SenatorTimScott
youtube_id: UCSfAsbG80CNInSKrtpKoL-w
instagram: SenatorTimScott
twitter_id: 217543151
- id:
bioguide: S001183
thomas: '01994'
govtrack: 412399
social:
twitter: RepDavid
facebook: repdavidschweikert
youtube: RepDavidSchweikert
youtube_id: UCVvuNVzkOUp7p_Pzkc6Zuvw
instagram: repdavid
instagram_id: 181147397
twitter_id: 229197216
- id:
bioguide: S001181
thomas: '01901'
govtrack: 412323
social:
twitter: SenatorShaheen
facebook: SenatorShaheen
youtube: senatorshaheen
youtube_id: UCjLZAZMbDrybHyttdEC9LFA
twitter_id: 109287731
instagram: senatorshaheen
- id:
bioguide: S001177
thomas: '01962'
govtrack: 412312
social:
facebook: '153423912663'
youtube: CongressmanSablan
youtube_id: UC-fbzxBSiC98eAE2goaANVQ
instagram: kilili_sablan
twitter: Kilili_Sablan
twitter_id: 926446070812602371
- id:
bioguide: S001176
thomas: '01892'
govtrack: 412261
social:
facebook: RepSteveScalise
youtube: RepSteveScalise
twitter: SteveScalise
youtube_id: UCmYveHBVXVBRxl7GiCL-gjw
instagram: stevescalise
instagram_id: 1210937919
twitter_id: 1209417007
- id:
bioguide: S001172
thomas: '01860'
govtrack: 412217
social:
twitter: RepAdrianSmith
youtube: RepAdrianSmith
youtube_id: UCIgn2z-hwxx_aeggnyhv54Q
twitter_id: 296245061
instagram: RepAdrianSmith
- id:
bioguide: S001157
thomas: '01722'
govtrack: 400363
social:
twitter: RepDavidScott
facebook: '113303673339'
youtube: RepDavidScott
youtube_id: UCgf28zRkLSqAUiPuJhGdF0w
twitter_id: 168673083
instagram: RepDavidScott
- id:
bioguide: S001156
thomas: '01757'
govtrack: 400355
social:
twitter: RepLindaSanchez
facebook: CongresswomanLindaSanchez
youtube: LindaTSanchez
youtube_id: UCu1K6uHxjMgj2mvzM7O9-ow
twitter_id: 312134473
- id:
bioguide: S001150
thomas: '01635'
govtrack: 400361
social:
twitter: RepAdamSchiff
facebook: RepAdamSchiff
youtube: adamschiff
youtube_id: UCadiUi-KZoFk1K5ZDsluLcA
twitter_id: 29501253
instagram: RepAdamSchiff
- id:
bioguide: S001148
thomas: '01590'
govtrack: 400376
social:
twitter: CongMikeSimpson
facebook: '96007744606'
youtube: CongMikeSimpson
youtube_id: UCNXe0rJJeULTAP_7oyQNw8g
twitter_id: 76132891
- id:
bioguide: S001145
thomas: '01588'
govtrack: 400360
social:
twitter: JanSchakowsky
facebook: janschakowsky
youtube: repschakowsky
youtube_id: UCuCHHPSENUEaaeH8n_CYDXQ
twitter_id: 24195214
- id:
bioguide: S001217
govtrack: 412838
social:
twitter: SenRickScott
facebook: RickScottSenOffice
youtube_id: UC-Y9pFmW4PYGZHkC8lcqSkQ
twitter_id: 131546062
- id:
bioguide: S000770
thomas: '01531'
govtrack: 300093
social:
twitter: SenStabenow
facebook: SenatorStabenow
youtube: senatorstabenow
youtube_id: UCFoDKCvxSwCUfDv-4Eg4K5A
twitter_id: 76456274
- id:
bioguide: S000510
thomas: '01528'
govtrack: 400379
social:
twitter: RepAdamSmith
facebook: RepAdamSmith
youtube: CongressmanAdamSmith
youtube_id: UCcrHso483LOfC6WwDnzAh-g
twitter_id: 58928690
- id:
bioguide: S000344
thomas: '01526'
govtrack: 400371
social:
twitter: BradSherman
facebook: '63158229861'
youtube: shermanca27
youtube_id: UCPisrz6-SLwVy2l9Mcy8kug
twitter_id: 30216513
- id:
bioguide: S000185
thomas: '01037'
govtrack: 400364
social:
twitter: BobbyScott
facebook: RepBobbyScott
youtube: repbobbyscott
youtube_id: UCdNNcpw8arCsUp55JwK_QAA
instagram: repbobbyscott
instagram_id: 1173348983
twitter_id: 161791703
- id:
bioguide: S000148
thomas: '01036'
govtrack: 300087
social:
twitter: SenSchumer
facebook: senschumer
youtube: SenatorSchumer
youtube_id: UC-ABttxh8uQv_10qmwGaidw
twitter_id: 17494010
- id:
bioguide: S000033
thomas: '01010'
govtrack: 400357
social:
twitter: SenSanders
facebook: senatorsanders
youtube: senatorsanders
youtube_id: UCD_DaKNac0Ta-2PeHuoQ1uA
twitter_id: 29442313
- id:
bioguide: R000595
thomas: '02084'
govtrack: 412491
social:
twitter: SenRubioPress
facebook: SenatorMarcoRubio
youtube: SenatorMarcoRubio
youtube_id: UCh8t7sV_DBKz4A-RkL9feyg
twitter_id: 229966028
- id:
bioguide: R000576
thomas: '01728'
govtrack: 400349
social:
twitter: Call_Me_Dutch
facebook: DutchRupp
youtube: ruppersberger
youtube_id: UCk2S9iSHNpo1E1A7qZ0SPIw
twitter_id: 305620929
instagram: dutchruppersberger
- id:
bioguide: R000575
thomas: '01704'
govtrack: 400341
social:
twitter: RepMikeRogersAL
facebook: CongressmanMikeDRogers
youtube: MikeRogersAL03
youtube_id: UCH-WUWuY0_dlKwJDSqKTJsg
instagram: repmikerogersal
instagram_id: 259435765
twitter_id: 33977070
- id:
bioguide: R000395
thomas: '00977'
govtrack: 400340
social:
twitter: RepHalRogers
facebook: CongressmanHalRogers
youtube: RepHalRogers
youtube_id: UChVFKLZkRoHQDhp4zNvEezQ
twitter_id: 550401754
instagram: rephalrogers
- id:
bioguide: R000122
thomas: '00949'
govtrack: 300081
social:
twitter: SenJackReed
facebook: SenJackReed
youtube: SenatorReed
youtube_id: UCT_aFVtsjxPwWKfO-PW_hPw
twitter_id: 486694111
- id:
bioguide: Q000023
thomas: '01967'
govtrack: 412331
social:
twitter: RepMikeQuigley
facebook: repmikequigley
youtube: RepMikeQuigley
youtube_id: UCDP13XegdoZ4bxYHxM34yAA
instagram: repmikequigley
instagram_id: 1403659583
twitter_id: 56864092
- id:
bioguide: P000603
thomas: '02082'
govtrack: 412492
social:
twitter: SenRandPaul
twitter_id: 1298624375692894210
facebook: SenatorRandPaul
youtube: SenatorRandPaul
youtube_id: UCeM9I-20oWUs8daIIpsNHoQ
instagram: senatorrandpaul
instagram_id: 541357095
- id:
bioguide: P000599
thomas: '01915'
govtrack: 412309
social:
twitter: CongBillPosey
facebook: bill.posey15
youtube: CongressmanPosey
youtube_id: UCoUwUkDpe1ZYd6tiaZfiMuA
twitter_id: 25086658
- id:
bioguide: P000597
thomas: '01927'
govtrack: 412307
social:
twitter: ChelliePingree
facebook: ChelliePingree
youtube: congresswomanpingree
youtube_id: UCLKaWFM7I84WcreDRhhhkVg
twitter_id: 14984637
mastodon: '@[email protected]'
- id:
bioguide: P000595
thomas: '01929'
govtrack: 412305
social:
twitter: SenGaryPeters
facebook: SenGaryPeters
youtube: RepGaryPeters
youtube_id: UC7LYNbnKSK2VZqQ98YROWHQ
instagram: sengarypeters
instagram_id: 1640246681
twitter_id: 236511574
- id:
bioguide: P000197
thomas: '00905'
govtrack: 400314
social:
facebook: NancyPelosi
youtube: nancypelosi
youtube_id: UCxPeEcH0xaCK9nBK98EFhDg
twitter: SpeakerPelosi
twitter_id: 15764644
- id:
bioguide: P000034
thomas: '00887'
govtrack: 400308
social:
twitter: FrankPallone
facebook: repfrankpallone
youtube: repfrankpallone
youtube_id: UCN0_wn9hs1LI3UKkji2PP2A
twitter_id: 31801993
instagram: repfrankpallone
- id:
bioguide: N000179
thomas: '01602'
govtrack: 400290
social:
twitter: GraceNapolitano
facebook: RepGraceNapolitano
youtube: RepGraceNapolitano
youtube_id: UCPWjmiAIR04oQ8QMoOWcDtA
twitter_id: 161411080
instagram: repgracenapolitano
- id:
bioguide: N000147
thomas: '00868'
govtrack: 400295
social:
twitter: EleanorNorton
facebook: CongresswomanNorton
youtube: EleanorHNorton
youtube_id: UChRrAXUGylfxJjbquC6aUjQ
twitter_id: 23600262
mastodon: '@[email protected]'
- id:
bioguide: N000015
thomas: '00854'
govtrack: 400291
social:
twitter: RepRichardNeal
facebook: reprichardneal
youtube: RepRichardENeal
youtube_id: UCZVtTydu0-MSK6G12GaKA4g
twitter_id: 442824717
- id:
bioguide: N000002
thomas: '00850'
govtrack: 400289
social:
twitter: RepJerryNadler
facebook: CongressmanNadler
youtube: congressmannadler
youtube_id: UCQKj0qU1e7o2f5ftSh-c9aQ
twitter_id: 40302336
- id:
bioguide: M001183
thomas: '01983'
govtrack: 412391
social:
twitter: Sen_JoeManchin
facebook: JoeManchinIII
youtube: SenatorJoeManchin
youtube_id: UCGyPK_ye2ptpzQgOjKIn7ag
twitter_id: 234374703
- id:
bioguide: M001177
thomas: '01908'
govtrack: 412295
social:
twitter: RepMcClintock
facebook: '81125319109'
youtube: McClintockCA04
youtube_id: UCMh04KC4LfIzKoXh2Xws_pw
twitter_id: 50152441
- id:
bioguide: M001176
thomas: '01900'
govtrack: 412325
social:
twitter: SenJeffMerkley
facebook: jeffmerkley
youtube: SenatorJeffMerkley
youtube_id: UCRoXttCJhMnLVCxCaa6VnNQ
instagram: senjeffmerkley
instagram_id: 501463589
twitter_id: 29201047
- id:
bioguide: M001163
thomas: '01814'
govtrack: 400663
social:
twitter: DorisMatsui
facebook: doris.matsui
youtube: RepDorisMatsui
youtube_id: UCSqqxVkvskHq3cY2MCbTZsw
twitter_id: 38254095
instagram: repdorismatsui
- id:
bioguide: M001160
thomas: '01811'
govtrack: 400661
social:
twitter: RepGwenMoore
facebook: GwenSMoore
youtube: RepGwenMoore
youtube_id: UCCs9o1XaSsCsqNpO0iO0_Ew
twitter_id: 22669526
instagram: RepGwenMoore
- id:
bioguide: M001159
thomas: '01809'
govtrack: 400659
social:
twitter: CathyMcMorris
facebook: mcmorrisrodgers
youtube: mcmorrisrodgers
youtube_id: UCRp0lwIxAhq2Ia9_YgRWUkg
twitter_id: 17976923
instagram: cathymcmorris
- id:
bioguide: M001157
thomas: '01804'
govtrack: 400654
social:
facebook: michaeltmccaul
youtube: MichaelTMcCaul
youtube_id: UCRw6sGE0PH7_FCeTT3PQRaA
twitter: RepMcCaul
twitter_id: 26424123
instagram: congressman_mccaul
- id:
bioguide: M001156
thomas: '01792'
govtrack: 400644
social:
twitter: PatrickMcHenry
facebook: CongressmanMcHenry
youtube: CongressmanMcHenry
youtube_id: UCY3PTRhkSH-eoltxPVZKD-w
instagram: reppatrickmchenry
instagram_id: 353406473
twitter_id: 27676828
- id:
bioguide: M001153
thomas: '01694'
govtrack: 300075
social:
twitter: LisaMurkowski
facebook: SenLisaMurkowski
youtube: senatormurkowski
youtube_id: UCaigku16AErqvD0wRuwGb9A
twitter_id: 18061669
instagram: senlisamurkowski
- id:
bioguide: M001143
thomas: '01653'
govtrack: 400259
social:
twitter: BettyMcCollum04
facebook: repbettymccollum
twitter_id: 516880804
youtube: BMcCollum04
youtube_id: UC3sZJSdiZo2EBHbsOlsnI7A
instagram: repbettymccollum
- id:
bioguide: M001137
thomas: '01506'
govtrack: 400271
social:
twitter: RepGregoryMeeks
twitter_id: 22812754
facebook: gregorymeeksny05
youtube: gwmeeks
youtube_id: UCljJnwgQS6Z6-NypDyqKJZQ
instagram: repgregorymeeks
- id:
bioguide: M001111
thomas: '01409'
govtrack: 300076
social:
twitter: PattyMurray
youtube: SenatorPattyMurray
youtube_id: UCb8jq3TvQ3AzKsexhWfFLoA
instagram: senpattymurray
instagram_id: 426137845
twitter_id: 293131808
- id:
bioguide: M000934
thomas: '01507'
govtrack: 400284
social:
twitter: JerryMoran
facebook: jerrymoran
youtube: senatorjerrymoran
youtube_id: UC1oRxeUPam6-53wPBZ3N02A
instagram: senjerrymoran
instagram_id: 298271065
twitter_id: 18632666
- id:
bioguide: M000355
thomas: '01395'
govtrack: 300072
social:
twitter: McConnellPress
facebook: mitchmcconnell
twitter_id: 339822881
instagram: mcconnellpress
- id:
bioguide: M000312
thomas: '01504'
govtrack: 400263
social:
twitter: RepMcGovern
facebook: RepJimMcGovern
youtube: repjimmcgovern
youtube_id: UCpiUqp2ZF64tXqgR_EQo27g
twitter_id: 242426145
instagram: repmcgovern
- id:
bioguide: M000133
thomas: '00735'
govtrack: 400253
social:
twitter: SenMarkey
facebook: EdJMarkey
youtube: RepMarkey
youtube_id: UCT1ujew5yQy2uMhGrjiKHoA
twitter_id: 21406834
- id:
bioguide: L000577
thomas: '02080'
govtrack: 412495
social:
twitter: SenMikeLee
facebook: senatormikelee
youtube: senatormikelee
youtube_id: UCplVxs_j_sLAt0fkplXcl4A
instagram: senmikelee
instagram_id: 391361701
twitter_id: 88784440
- id:
bioguide: L000575
thomas: '02050'
govtrack: 412464
social:
twitter: SenatorLankford
facebook: SenatorLankford
youtube: SenatorLankford
youtube_id: UCz8T6sK5fEycyWmVz6Vpe5Q
instagram: senatorlankford
instagram_id: 1552251018
twitter_id: 225921757
- id:
bioguide: L000570
thomas: '01939'
govtrack: 412293
social:
twitter: SenatorLujan
twitter_id: 19318314
- id:
bioguide: L000569
thomas: '01931'
govtrack: 412292
social:
twitter: RepBlaine
twitter_id: 1849261916
facebook: BlaineLuetkemeyer
youtube: BLuetkemeyer
youtube_id: UCifiiQclKbBBrkSbCnN6REg
- id:
bioguide: L000566
thomas: '01885'
govtrack: 412256
social:
twitter: BobLatta
facebook: boblatta
youtube: CongressmanBobLatta
youtube_id: UCVSBVHoWu-eWnBBQaMKZ_sQ
instagram: boblatta
instagram_id: 26367713
twitter_id: 15394954
- id:
bioguide: L000564
thomas: '01834'
govtrack: 412191
social:
twitter: RepDLamborn
facebook: CongressmanDougLamborn
youtube: CongressmanLamborn
youtube_id: UCaYsGYMniq4nwBBMKFIwsow
twitter_id: 584012853
instagram: douglamborn
- id:
bioguide: L000562
thomas: '01686'
govtrack: 400249
social:
twitter: RepStephenLynch
facebook: repstephenlynch
youtube: RepLynch
youtube_id: UCxL4zG0YWqC5XTO4af_FOgw
twitter_id: 310310133
instagram: repstephenlynch
- id:
bioguide: L000560
thomas: '01675'
govtrack: 400232
social:
twitter: RepRickLarsen
facebook: RepRickLarsen
youtube: congressmanlarsen
youtube_id: UCMv7LsJtiyO4AJcbRux5CxQ
twitter_id: 404132211
instagram: repricklarsen
- id:
bioguide: L000557
thomas: '01583'
govtrack: 400233
social:
twitter: RepJohnLarson
facebook: RepJohnLarson
youtube: RepJohnLarson
youtube_id: UCGPsvFF-9WfpdRSCcCrPLiQ
twitter_id: 50452197
instagram: RepJohnBLarson
- id:
bioguide: L000551
thomas: '01501'
govtrack: 400237
social:
twitter: RepBarbaraLee
facebook: RepBarbaraLee
youtube: RepLee
youtube_id: UCnRgK2MXAQOUau0JXqseeNA
instagram: repbarbaralee
instagram_id: 1415801245
twitter_id: 248735463
- id:
bioguide: L000491
thomas: '00711'
govtrack: 400247
social:
facebook: RepFrankLucas
youtube: RepFrankLucas
youtube_id: UCdYZbKY8pkWAThqwC3fdVMg
twitter: RepFrankLucas
twitter_id: 242772524
- id:
bioguide: L000397
thomas: '00701'
govtrack: 400245
social:
twitter: RepZoeLofgren
facebook: zoelofgren
youtube: RepZoeLofgren
youtube_id: UCOaQ79adORFcaTuJZoIFuZQ
twitter_id: 267938462