members_directory.json 196 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165
  1. {
  2. "A000055": {
  3. "bioguide": "A000055",
  4. "chamber": "House of Representatives",
  5. "district": null,
  6. "full_name": "Robert B. Aderholt",
  7. "lis": null,
  8. "party": "R",
  9. "photo_url": "https://www.congress.gov/img/member/a000055_200.jpg",
  10. "served_from": "1997-01-03",
  11. "served_to": null,
  12. "source": "congress.gov/v3",
  13. "state": "AL"
  14. },
  15. "A000148": {
  16. "bioguide": "A000148",
  17. "chamber": "House of Representatives",
  18. "district": null,
  19. "full_name": "Jake Auchincloss",
  20. "lis": null,
  21. "party": "D",
  22. "photo_url": "https://www.congress.gov/img/member/67817e391f9ad6ea6fb1ebda_200.jpg",
  23. "served_from": "2021-01-03",
  24. "served_to": null,
  25. "source": "congress.gov/v3",
  26. "state": "MA"
  27. },
  28. "A000369": {
  29. "bioguide": "A000369",
  30. "chamber": "House of Representatives",
  31. "district": null,
  32. "full_name": "Mark E. Amodei",
  33. "lis": null,
  34. "party": "R",
  35. "photo_url": "https://www.congress.gov/img/member/a000369_200.jpg",
  36. "served_from": "2011-01-03",
  37. "served_to": null,
  38. "source": "congress.gov/v3",
  39. "state": "NV"
  40. },
  41. "A000370": {
  42. "bioguide": "A000370",
  43. "chamber": "House of Representatives",
  44. "district": null,
  45. "full_name": "Alma S. Adams",
  46. "lis": null,
  47. "party": "D",
  48. "photo_url": "https://www.congress.gov/img/member/a000370_200.jpg",
  49. "served_from": "2014-01-03",
  50. "served_to": null,
  51. "source": "congress.gov/v3",
  52. "state": "NC"
  53. },
  54. "A000371": {
  55. "bioguide": "A000371",
  56. "chamber": "House of Representatives",
  57. "district": null,
  58. "full_name": "Pete Aguilar",
  59. "lis": null,
  60. "party": "D",
  61. "photo_url": "https://www.congress.gov/img/member/a000371_200.jpg",
  62. "served_from": "2015-01-03",
  63. "served_to": null,
  64. "source": "congress.gov/v3",
  65. "state": "CA"
  66. },
  67. "A000372": {
  68. "bioguide": "A000372",
  69. "chamber": "House of Representatives",
  70. "district": null,
  71. "full_name": "Rick W. Allen",
  72. "lis": null,
  73. "party": "R",
  74. "photo_url": "https://www.congress.gov/img/member/a000372_200.jpg",
  75. "served_from": "2015-01-03",
  76. "served_to": null,
  77. "source": "congress.gov/v3",
  78. "state": "GA"
  79. },
  80. "A000375": {
  81. "bioguide": "A000375",
  82. "chamber": "House of Representatives",
  83. "district": null,
  84. "full_name": "Jodey C. Arrington",
  85. "lis": null,
  86. "party": "R",
  87. "photo_url": "https://www.congress.gov/img/member/115_rp_tx_19_arrington_jodey_200.jpg",
  88. "served_from": "2017-01-03",
  89. "served_to": null,
  90. "source": "congress.gov/v3",
  91. "state": "TX"
  92. },
  93. "A000379": {
  94. "bioguide": "A000379",
  95. "chamber": "House of Representatives",
  96. "district": null,
  97. "full_name": "Mark Alford",
  98. "lis": null,
  99. "party": "R",
  100. "photo_url": "https://www.congress.gov/img/member/a000379_200.jpg",
  101. "served_from": "2023-01-03",
  102. "served_to": null,
  103. "source": "congress.gov/v3",
  104. "state": "MO"
  105. },
  106. "A000380": {
  107. "bioguide": "A000380",
  108. "chamber": "House of Representatives",
  109. "district": null,
  110. "full_name": "Gabe Amo",
  111. "lis": null,
  112. "party": "D",
  113. "photo_url": "https://www.congress.gov/img/member/669ace45fa2fb0d731226768_200.jpg",
  114. "served_from": "2023-01-03",
  115. "served_to": null,
  116. "source": "congress.gov/v3",
  117. "state": "RI"
  118. },
  119. "A000381": {
  120. "bioguide": "A000381",
  121. "chamber": "House of Representatives",
  122. "district": null,
  123. "full_name": "Yassamin Ansari",
  124. "lis": null,
  125. "party": "D",
  126. "photo_url": "https://www.congress.gov/img/member/67741fc30b34857ecc90902e_200.jpg",
  127. "served_from": "2025-01-03",
  128. "served_to": null,
  129. "source": "congress.gov/v3",
  130. "state": "AZ"
  131. },
  132. "A000382": {
  133. "bioguide": "A000382",
  134. "chamber": "Senate",
  135. "district": null,
  136. "full_name": "Angela D. Alsobrooks",
  137. "lis": "S428",
  138. "party": "D",
  139. "photo_url": "https://www.congress.gov/img/member/67acdbbf044eb506e25958f2_200.jpg",
  140. "served_from": "2025-01-03",
  141. "served_to": null,
  142. "source": "congress.gov/v3",
  143. "state": "MD"
  144. },
  145. "A000383": {
  146. "bioguide": "A000383",
  147. "chamber": "Senate",
  148. "district": null,
  149. "full_name": "Alan Armstrong",
  150. "lis": "S440",
  151. "party": "R",
  152. "photo_url": null,
  153. "served_from": "2026-01-03",
  154. "served_to": null,
  155. "source": "congress.gov/v3",
  156. "state": "OK"
  157. },
  158. "B000490": {
  159. "bioguide": "B000490",
  160. "chamber": "House of Representatives",
  161. "district": null,
  162. "full_name": "Sanford D. Bishop",
  163. "lis": null,
  164. "party": "D",
  165. "photo_url": "https://www.congress.gov/img/member/b000490_200.jpg",
  166. "served_from": "1993-01-03",
  167. "served_to": null,
  168. "source": "congress.gov/v3",
  169. "state": "GA"
  170. },
  171. "B000668": {
  172. "bioguide": "B000668",
  173. "chamber": "House of Representatives",
  174. "district": null,
  175. "full_name": "Cliff Bentz",
  176. "lis": null,
  177. "party": "R",
  178. "photo_url": "https://www.congress.gov/img/member/b000668_200.jpg",
  179. "served_from": "2021-01-03",
  180. "served_to": null,
  181. "source": "congress.gov/v3",
  182. "state": "OR"
  183. },
  184. "B000740": {
  185. "bioguide": "B000740",
  186. "chamber": "House of Representatives",
  187. "district": null,
  188. "full_name": "Stephanie I. Bice",
  189. "lis": null,
  190. "party": "R",
  191. "photo_url": "https://www.congress.gov/img/member/b000740_200.jpg",
  192. "served_from": "2021-01-03",
  193. "served_to": null,
  194. "source": "congress.gov/v3",
  195. "state": "OK"
  196. },
  197. "B000825": {
  198. "bioguide": "B000825",
  199. "chamber": "House of Representatives",
  200. "district": null,
  201. "full_name": "Lauren Boebert",
  202. "lis": null,
  203. "party": "R",
  204. "photo_url": "https://www.congress.gov/img/member/b000825_200.jpg",
  205. "served_from": "2021-01-03",
  206. "served_to": null,
  207. "source": "congress.gov/v3",
  208. "state": "CO"
  209. },
  210. "B001230": {
  211. "bioguide": "B001230",
  212. "chamber": "Senate",
  213. "district": null,
  214. "full_name": "Tammy Baldwin",
  215. "lis": "S354",
  216. "party": "D",
  217. "photo_url": "https://www.congress.gov/img/member/b001230_200.jpg",
  218. "served_from": "1999-01-03",
  219. "served_to": null,
  220. "source": "congress.gov/v3",
  221. "state": "WI"
  222. },
  223. "B001236": {
  224. "bioguide": "B001236",
  225. "chamber": "Senate",
  226. "district": null,
  227. "full_name": "John Boozman",
  228. "lis": "S343",
  229. "party": "R",
  230. "photo_url": "https://www.congress.gov/img/member/b001236_200.jpg",
  231. "served_from": "2001-01-03",
  232. "served_to": null,
  233. "source": "congress.gov/v3",
  234. "state": "AR"
  235. },
  236. "B001243": {
  237. "bioguide": "B001243",
  238. "chamber": "Senate",
  239. "district": null,
  240. "full_name": "Marsha Blackburn",
  241. "lis": "S396",
  242. "party": "R",
  243. "photo_url": "https://www.congress.gov/img/member/b001243_200.jpg",
  244. "served_from": "2003-01-03",
  245. "served_to": null,
  246. "source": "congress.gov/v3",
  247. "state": "TN"
  248. },
  249. "B001257": {
  250. "bioguide": "B001257",
  251. "chamber": "House of Representatives",
  252. "district": null,
  253. "full_name": "Gus M. Bilirakis",
  254. "lis": null,
  255. "party": "R",
  256. "photo_url": "https://www.congress.gov/img/member/117_rp_fl_12_bilirakis_gus_200.jpg",
  257. "served_from": "2007-01-03",
  258. "served_to": null,
  259. "source": "congress.gov/v3",
  260. "state": "FL"
  261. },
  262. "B001260": {
  263. "bioguide": "B001260",
  264. "chamber": "House of Representatives",
  265. "district": null,
  266. "full_name": "Vern Buchanan",
  267. "lis": null,
  268. "party": "R",
  269. "photo_url": "https://www.congress.gov/img/member/b001260_200.jpg",
  270. "served_from": "2007-01-03",
  271. "served_to": null,
  272. "source": "congress.gov/v3",
  273. "state": "FL"
  274. },
  275. "B001261": {
  276. "bioguide": "B001261",
  277. "chamber": "Senate",
  278. "district": null,
  279. "full_name": "John Barrasso",
  280. "lis": "S317",
  281. "party": "R",
  282. "photo_url": "https://www.congress.gov/img/member/b001261_200.jpg",
  283. "served_from": "2007-01-03",
  284. "served_to": null,
  285. "source": "congress.gov/v3",
  286. "state": "WY"
  287. },
  288. "B001267": {
  289. "bioguide": "B001267",
  290. "chamber": "Senate",
  291. "district": null,
  292. "full_name": "Michael F. Bennet",
  293. "lis": "S330",
  294. "party": "D",
  295. "photo_url": "https://www.congress.gov/img/member/b001267_200.jpg",
  296. "served_from": "2009-01-03",
  297. "served_to": null,
  298. "source": "congress.gov/v3",
  299. "state": "CO"
  300. },
  301. "B001277": {
  302. "bioguide": "B001277",
  303. "chamber": "Senate",
  304. "district": null,
  305. "full_name": "Richard Blumenthal",
  306. "lis": "S341",
  307. "party": "D",
  308. "photo_url": "https://www.congress.gov/img/member/b001277_200.jpg",
  309. "served_from": "2011-01-03",
  310. "served_to": null,
  311. "source": "congress.gov/v3",
  312. "state": "CT"
  313. },
  314. "B001278": {
  315. "bioguide": "B001278",
  316. "chamber": "House of Representatives",
  317. "district": null,
  318. "full_name": "Suzanne Bonamici",
  319. "lis": null,
  320. "party": "D",
  321. "photo_url": "https://www.congress.gov/img/member/b001278_200.jpg",
  322. "served_from": "2012-01-03",
  323. "served_to": null,
  324. "source": "congress.gov/v3",
  325. "state": "OR"
  326. },
  327. "B001281": {
  328. "bioguide": "B001281",
  329. "chamber": "House of Representatives",
  330. "district": null,
  331. "full_name": "Joyce Beatty",
  332. "lis": null,
  333. "party": "D",
  334. "photo_url": "https://www.congress.gov/img/member/b001281_200.jpg",
  335. "served_from": "2013-01-03",
  336. "served_to": null,
  337. "source": "congress.gov/v3",
  338. "state": "OH"
  339. },
  340. "B001282": {
  341. "bioguide": "B001282",
  342. "chamber": "House of Representatives",
  343. "district": null,
  344. "full_name": "Andy Barr",
  345. "lis": null,
  346. "party": "R",
  347. "photo_url": "https://www.congress.gov/img/member/b001282_200.jpg",
  348. "served_from": "2013-01-03",
  349. "served_to": null,
  350. "source": "congress.gov/v3",
  351. "state": "KY"
  352. },
  353. "B001285": {
  354. "bioguide": "B001285",
  355. "chamber": "House of Representatives",
  356. "district": null,
  357. "full_name": "Julia Brownley",
  358. "lis": null,
  359. "party": "D",
  360. "photo_url": "https://www.congress.gov/img/member/68000188f22eaf56065817e8_200.jpg",
  361. "served_from": "2013-01-03",
  362. "served_to": null,
  363. "source": "congress.gov/v3",
  364. "state": "CA"
  365. },
  366. "B001287": {
  367. "bioguide": "B001287",
  368. "chamber": "House of Representatives",
  369. "district": null,
  370. "full_name": "Ami Bera",
  371. "lis": null,
  372. "party": "D",
  373. "photo_url": "https://www.congress.gov/img/member/b001287_200.jpg",
  374. "served_from": "2013-01-03",
  375. "served_to": null,
  376. "source": "congress.gov/v3",
  377. "state": "CA"
  378. },
  379. "B001288": {
  380. "bioguide": "B001288",
  381. "chamber": "Senate",
  382. "district": null,
  383. "full_name": "Cory A. Booker",
  384. "lis": "S370",
  385. "party": "D",
  386. "photo_url": "https://www.congress.gov/img/member/b001288_200.jpg",
  387. "served_from": "2013-01-03",
  388. "served_to": null,
  389. "source": "congress.gov/v3",
  390. "state": "NJ"
  391. },
  392. "B001291": {
  393. "bioguide": "B001291",
  394. "chamber": "House of Representatives",
  395. "district": null,
  396. "full_name": "Brian Babin",
  397. "lis": null,
  398. "party": "R",
  399. "photo_url": "https://www.congress.gov/img/member/b001291_200.jpg",
  400. "served_from": "2015-01-03",
  401. "served_to": null,
  402. "source": "congress.gov/v3",
  403. "state": "TX"
  404. },
  405. "B001292": {
  406. "bioguide": "B001292",
  407. "chamber": "House of Representatives",
  408. "district": null,
  409. "full_name": "Donald S. Beyer",
  410. "lis": null,
  411. "party": "D",
  412. "photo_url": "https://www.congress.gov/img/member/b001292_200.jpg",
  413. "served_from": "2015-01-03",
  414. "served_to": null,
  415. "source": "congress.gov/v3",
  416. "state": "VA"
  417. },
  418. "B001295": {
  419. "bioguide": "B001295",
  420. "chamber": "House of Representatives",
  421. "district": null,
  422. "full_name": "Mike Bost",
  423. "lis": null,
  424. "party": "R",
  425. "photo_url": "https://www.congress.gov/img/member/b001295_200.jpg",
  426. "served_from": "2015-01-03",
  427. "served_to": null,
  428. "source": "congress.gov/v3",
  429. "state": "IL"
  430. },
  431. "B001296": {
  432. "bioguide": "B001296",
  433. "chamber": "House of Representatives",
  434. "district": null,
  435. "full_name": "Brendan F. Boyle",
  436. "lis": null,
  437. "party": "D",
  438. "photo_url": "https://www.congress.gov/img/member/69b30d648b7b84825b02d362_200.jpg",
  439. "served_from": "2015-01-03",
  440. "served_to": null,
  441. "source": "congress.gov/v3",
  442. "state": "PA"
  443. },
  444. "B001298": {
  445. "bioguide": "B001298",
  446. "chamber": "House of Representatives",
  447. "district": null,
  448. "full_name": "Don Bacon",
  449. "lis": null,
  450. "party": "R",
  451. "photo_url": "https://www.congress.gov/img/member/115_rp_ne_2_bacon_don_200.jpg",
  452. "served_from": "2017-01-03",
  453. "served_to": null,
  454. "source": "congress.gov/v3",
  455. "state": "NE"
  456. },
  457. "B001299": {
  458. "bioguide": "B001299",
  459. "chamber": "Senate",
  460. "district": null,
  461. "full_name": "Jim Banks",
  462. "lis": "S429",
  463. "party": "R",
  464. "photo_url": "https://www.congress.gov/img/member/677d83cbfdb6cf36bbb64998_200.jpg",
  465. "served_from": "2017-01-03",
  466. "served_to": null,
  467. "source": "congress.gov/v3",
  468. "state": "IN"
  469. },
  470. "B001300": {
  471. "bioguide": "B001300",
  472. "chamber": "House of Representatives",
  473. "district": null,
  474. "full_name": "Nanette Diaz Barrag\u00e1n",
  475. "lis": null,
  476. "party": "D",
  477. "photo_url": "https://www.congress.gov/img/member/b001300_200.jpg",
  478. "served_from": "2017-01-03",
  479. "served_to": null,
  480. "source": "congress.gov/v3",
  481. "state": "CA"
  482. },
  483. "B001301": {
  484. "bioguide": "B001301",
  485. "chamber": "House of Representatives",
  486. "district": null,
  487. "full_name": "Jack Bergman",
  488. "lis": null,
  489. "party": "R",
  490. "photo_url": "https://www.congress.gov/img/member/b001301_200.jpg",
  491. "served_from": "2017-01-03",
  492. "served_to": null,
  493. "source": "congress.gov/v3",
  494. "state": "MI"
  495. },
  496. "B001302": {
  497. "bioguide": "B001302",
  498. "chamber": "House of Representatives",
  499. "district": null,
  500. "full_name": "Andy Biggs",
  501. "lis": null,
  502. "party": "R",
  503. "photo_url": "https://www.congress.gov/img/member/b001302_200.jpg",
  504. "served_from": "2017-01-03",
  505. "served_to": null,
  506. "source": "congress.gov/v3",
  507. "state": "AZ"
  508. },
  509. "B001303": {
  510. "bioguide": "B001303",
  511. "chamber": "Senate",
  512. "district": null,
  513. "full_name": "Lisa Blunt Rochester",
  514. "lis": "S430",
  515. "party": "D",
  516. "photo_url": "https://www.congress.gov/img/member/b001303_200.jpg",
  517. "served_from": "2017-01-03",
  518. "served_to": null,
  519. "source": "congress.gov/v3",
  520. "state": "DE"
  521. },
  522. "B001305": {
  523. "bioguide": "B001305",
  524. "chamber": "Senate",
  525. "district": null,
  526. "full_name": "Ted Budd",
  527. "lis": "S417",
  528. "party": "R",
  529. "photo_url": "https://www.congress.gov/img/member/b001305_200.jpg",
  530. "served_from": "2017-01-03",
  531. "served_to": null,
  532. "source": "congress.gov/v3",
  533. "state": "NC"
  534. },
  535. "B001306": {
  536. "bioguide": "B001306",
  537. "chamber": "House of Representatives",
  538. "district": null,
  539. "full_name": "Troy Balderson",
  540. "lis": null,
  541. "party": "R",
  542. "photo_url": "https://www.congress.gov/img/member/116_rp_oh_12_balderson_troy_200.jpg",
  543. "served_from": "2018-01-03",
  544. "served_to": null,
  545. "source": "congress.gov/v3",
  546. "state": "OH"
  547. },
  548. "B001307": {
  549. "bioguide": "B001307",
  550. "chamber": "House of Representatives",
  551. "district": null,
  552. "full_name": "James R. Baird",
  553. "lis": null,
  554. "party": "R",
  555. "photo_url": "https://www.congress.gov/img/member/b001307_200.jpg",
  556. "served_from": "2019-01-03",
  557. "served_to": null,
  558. "source": "congress.gov/v3",
  559. "state": "IN"
  560. },
  561. "B001309": {
  562. "bioguide": "B001309",
  563. "chamber": "House of Representatives",
  564. "district": null,
  565. "full_name": "Tim Burchett",
  566. "lis": null,
  567. "party": "R",
  568. "photo_url": "https://www.congress.gov/img/member/b001309_200.jpg",
  569. "served_from": "2019-01-03",
  570. "served_to": null,
  571. "source": "congress.gov/v3",
  572. "state": "TN"
  573. },
  574. "B001313": {
  575. "bioguide": "B001313",
  576. "chamber": "House of Representatives",
  577. "district": null,
  578. "full_name": "Shontel M. Brown",
  579. "lis": null,
  580. "party": "D",
  581. "photo_url": "https://www.congress.gov/img/member/b001313_200.jpg",
  582. "served_from": "2021-01-03",
  583. "served_to": null,
  584. "source": "congress.gov/v3",
  585. "state": "OH"
  586. },
  587. "B001314": {
  588. "bioguide": "B001314",
  589. "chamber": "House of Representatives",
  590. "district": null,
  591. "full_name": "Aaron Bean",
  592. "lis": null,
  593. "party": "R",
  594. "photo_url": "https://www.congress.gov/img/member/b001314_200.jpg",
  595. "served_from": "2023-01-03",
  596. "served_to": null,
  597. "source": "congress.gov/v3",
  598. "state": "FL"
  599. },
  600. "B001315": {
  601. "bioguide": "B001315",
  602. "chamber": "House of Representatives",
  603. "district": null,
  604. "full_name": "Nikki Budzinski",
  605. "lis": null,
  606. "party": "D",
  607. "photo_url": "https://www.congress.gov/img/member/b001315_200.jpg",
  608. "served_from": "2023-01-03",
  609. "served_to": null,
  610. "source": "congress.gov/v3",
  611. "state": "IL"
  612. },
  613. "B001316": {
  614. "bioguide": "B001316",
  615. "chamber": "House of Representatives",
  616. "district": null,
  617. "full_name": "Eric Burlison",
  618. "lis": null,
  619. "party": "R",
  620. "photo_url": "https://www.congress.gov/img/member/b001316_200.jpg",
  621. "served_from": "2023-01-03",
  622. "served_to": null,
  623. "source": "congress.gov/v3",
  624. "state": "MO"
  625. },
  626. "B001317": {
  627. "bioguide": "B001317",
  628. "chamber": "House of Representatives",
  629. "district": null,
  630. "full_name": "Josh Brecheen",
  631. "lis": null,
  632. "party": "R",
  633. "photo_url": "https://www.congress.gov/img/member/b001317_200.jpg",
  634. "served_from": "2023-01-03",
  635. "served_to": null,
  636. "source": "congress.gov/v3",
  637. "state": "OK"
  638. },
  639. "B001318": {
  640. "bioguide": "B001318",
  641. "chamber": "House of Representatives",
  642. "district": null,
  643. "full_name": "Becca Balint",
  644. "lis": null,
  645. "party": "D",
  646. "photo_url": "https://www.congress.gov/img/member/b001318_200.jpg",
  647. "served_from": "2023-01-03",
  648. "served_to": null,
  649. "source": "congress.gov/v3",
  650. "state": "VT"
  651. },
  652. "B001319": {
  653. "bioguide": "B001319",
  654. "chamber": "Senate",
  655. "district": null,
  656. "full_name": "Katie Boyd Britt",
  657. "lis": "S416",
  658. "party": "R",
  659. "photo_url": "https://www.congress.gov/img/member/b001319_200.jpg",
  660. "served_from": "2023-01-03",
  661. "served_to": null,
  662. "source": "congress.gov/v3",
  663. "state": "AL"
  664. },
  665. "B001321": {
  666. "bioguide": "B001321",
  667. "chamber": "House of Representatives",
  668. "district": null,
  669. "full_name": "Tom Barrett",
  670. "lis": null,
  671. "party": "R",
  672. "photo_url": "https://www.congress.gov/img/member/6774207d0b34857ecc909034_200.jpg",
  673. "served_from": "2025-01-03",
  674. "served_to": null,
  675. "source": "congress.gov/v3",
  676. "state": "MI"
  677. },
  678. "B001322": {
  679. "bioguide": "B001322",
  680. "chamber": "House of Representatives",
  681. "district": null,
  682. "full_name": "Michael Baumgartner",
  683. "lis": null,
  684. "party": "R",
  685. "photo_url": "https://www.congress.gov/img/member/6774212e0b34857ecc90903a_200.jpg",
  686. "served_from": "2025-01-03",
  687. "served_to": null,
  688. "source": "congress.gov/v3",
  689. "state": "WA"
  690. },
  691. "B001323": {
  692. "bioguide": "B001323",
  693. "chamber": "House of Representatives",
  694. "district": null,
  695. "full_name": "Nicholas J. Begich",
  696. "lis": null,
  697. "party": "R",
  698. "photo_url": "https://www.congress.gov/img/member/6774217e0b34857ecc909040_200.jpg",
  699. "served_from": "2025-01-03",
  700. "served_to": null,
  701. "source": "congress.gov/v3",
  702. "state": "AK"
  703. },
  704. "B001324": {
  705. "bioguide": "B001324",
  706. "chamber": "House of Representatives",
  707. "district": null,
  708. "full_name": "Wesley Bell",
  709. "lis": null,
  710. "party": "D",
  711. "photo_url": "https://www.congress.gov/img/member/677422240b34857ecc90904a_200.jpg",
  712. "served_from": "2025-01-03",
  713. "served_to": null,
  714. "source": "congress.gov/v3",
  715. "state": "MO"
  716. },
  717. "B001325": {
  718. "bioguide": "B001325",
  719. "chamber": "House of Representatives",
  720. "district": null,
  721. "full_name": "Sheri Biggs",
  722. "lis": null,
  723. "party": "R",
  724. "photo_url": "https://www.congress.gov/img/member/677422990b34857ecc909052_200.jpg",
  725. "served_from": "2025-01-03",
  726. "served_to": null,
  727. "source": "congress.gov/v3",
  728. "state": "SC"
  729. },
  730. "B001326": {
  731. "bioguide": "B001326",
  732. "chamber": "House of Representatives",
  733. "district": null,
  734. "full_name": "Janelle S. Bynum",
  735. "lis": null,
  736. "party": "D",
  737. "photo_url": "https://www.congress.gov/img/member/677423150b34857ecc909059_200.jpg",
  738. "served_from": "2025-01-03",
  739. "served_to": null,
  740. "source": "congress.gov/v3",
  741. "state": "OR"
  742. },
  743. "B001327": {
  744. "bioguide": "B001327",
  745. "chamber": "House of Representatives",
  746. "district": null,
  747. "full_name": "Robert P. Bresnahan",
  748. "lis": null,
  749. "party": "R",
  750. "photo_url": "https://www.congress.gov/img/member/6774236f0b34857ecc90905f_200.jpg",
  751. "served_from": "2025-01-03",
  752. "served_to": null,
  753. "source": "congress.gov/v3",
  754. "state": "PA"
  755. },
  756. "C000059": {
  757. "bioguide": "C000059",
  758. "chamber": "House of Representatives",
  759. "district": null,
  760. "full_name": "Ken Calvert",
  761. "lis": null,
  762. "party": "R",
  763. "photo_url": "https://www.congress.gov/img/member/c000059_200.jpg",
  764. "served_from": "1993-01-03",
  765. "served_to": null,
  766. "source": "congress.gov/v3",
  767. "state": "CA"
  768. },
  769. "C000127": {
  770. "bioguide": "C000127",
  771. "chamber": "Senate",
  772. "district": null,
  773. "full_name": "Maria Cantwell",
  774. "lis": "S275",
  775. "party": "D",
  776. "photo_url": "https://www.congress.gov/img/member/c000127_200.jpg",
  777. "served_from": "1993-01-03",
  778. "served_to": null,
  779. "source": "congress.gov/v3",
  780. "state": "WA"
  781. },
  782. "C000537": {
  783. "bioguide": "C000537",
  784. "chamber": "House of Representatives",
  785. "district": null,
  786. "full_name": "James E. Clyburn",
  787. "lis": null,
  788. "party": "D",
  789. "photo_url": "https://www.congress.gov/img/member/c000537_200.jpg",
  790. "served_from": "1993-01-03",
  791. "served_to": null,
  792. "source": "congress.gov/v3",
  793. "state": "SC"
  794. },
  795. "C000880": {
  796. "bioguide": "C000880",
  797. "chamber": "Senate",
  798. "district": null,
  799. "full_name": "Mike Crapo",
  800. "lis": "S266",
  801. "party": "R",
  802. "photo_url": "https://www.congress.gov/img/member/c000880_200.jpg",
  803. "served_from": "1993-01-03",
  804. "served_to": null,
  805. "source": "congress.gov/v3",
  806. "state": "ID"
  807. },
  808. "C001035": {
  809. "bioguide": "C001035",
  810. "chamber": "Senate",
  811. "district": null,
  812. "full_name": "Susan M. Collins",
  813. "lis": "S252",
  814. "party": "R",
  815. "photo_url": "https://www.congress.gov/img/member/c001035_200.jpg",
  816. "served_from": "1997-01-03",
  817. "served_to": null,
  818. "source": "congress.gov/v3",
  819. "state": "ME"
  820. },
  821. "C001039": {
  822. "bioguide": "C001039",
  823. "chamber": "House of Representatives",
  824. "district": null,
  825. "full_name": "Kat Cammack",
  826. "lis": null,
  827. "party": "R",
  828. "photo_url": "https://www.congress.gov/img/member/c001039_200.jpg",
  829. "served_from": "2021-01-03",
  830. "served_to": null,
  831. "source": "congress.gov/v3",
  832. "state": "FL"
  833. },
  834. "C001047": {
  835. "bioguide": "C001047",
  836. "chamber": "Senate",
  837. "district": null,
  838. "full_name": "Shelley Moore Capito",
  839. "lis": "S372",
  840. "party": "R",
  841. "photo_url": "https://www.congress.gov/img/member/c001047_200.jpg",
  842. "served_from": "2001-01-03",
  843. "served_to": null,
  844. "source": "congress.gov/v3",
  845. "state": "WV"
  846. },
  847. "C001051": {
  848. "bioguide": "C001051",
  849. "chamber": "House of Representatives",
  850. "district": null,
  851. "full_name": "John R. Carter",
  852. "lis": null,
  853. "party": "R",
  854. "photo_url": "https://www.congress.gov/img/member/c001051_200.jpg",
  855. "served_from": "2003-01-03",
  856. "served_to": null,
  857. "source": "congress.gov/v3",
  858. "state": "TX"
  859. },
  860. "C001053": {
  861. "bioguide": "C001053",
  862. "chamber": "House of Representatives",
  863. "district": null,
  864. "full_name": "Tom Cole",
  865. "lis": null,
  866. "party": "R",
  867. "photo_url": "https://www.congress.gov/img/member/c001053_200.jpg",
  868. "served_from": "2003-01-03",
  869. "served_to": null,
  870. "source": "congress.gov/v3",
  871. "state": "OK"
  872. },
  873. "C001055": {
  874. "bioguide": "C001055",
  875. "chamber": "House of Representatives",
  876. "district": null,
  877. "full_name": "Ed Case",
  878. "lis": null,
  879. "party": "D",
  880. "photo_url": "https://www.congress.gov/img/member/c001055_200.jpg",
  881. "served_from": "2002-01-03",
  882. "served_to": null,
  883. "source": "congress.gov/v3",
  884. "state": "HI"
  885. },
  886. "C001056": {
  887. "bioguide": "C001056",
  888. "chamber": "Senate",
  889. "district": null,
  890. "full_name": "John Cornyn",
  891. "lis": "S287",
  892. "party": "R",
  893. "photo_url": "https://www.congress.gov/img/member/c001056_200.jpg",
  894. "served_from": "2002-01-03",
  895. "served_to": null,
  896. "source": "congress.gov/v3",
  897. "state": "TX"
  898. },
  899. "C001059": {
  900. "bioguide": "C001059",
  901. "chamber": "House of Representatives",
  902. "district": null,
  903. "full_name": "Jim Costa",
  904. "lis": null,
  905. "party": "D",
  906. "photo_url": "https://www.congress.gov/img/member/6973c909ded7781a35cc1fd7_200.jpg",
  907. "served_from": "2005-01-03",
  908. "served_to": null,
  909. "source": "congress.gov/v3",
  910. "state": "CA"
  911. },
  912. "C001061": {
  913. "bioguide": "C001061",
  914. "chamber": "House of Representatives",
  915. "district": null,
  916. "full_name": "Emanuel Cleaver",
  917. "lis": null,
  918. "party": "D",
  919. "photo_url": "https://www.congress.gov/img/member/116_rp_mo_5_cleaver_emanuel_200.jpg",
  920. "served_from": "2005-01-03",
  921. "served_to": null,
  922. "source": "congress.gov/v3",
  923. "state": "MO"
  924. },
  925. "C001063": {
  926. "bioguide": "C001063",
  927. "chamber": "House of Representatives",
  928. "district": null,
  929. "full_name": "Henry Cuellar",
  930. "lis": null,
  931. "party": "D",
  932. "photo_url": "https://www.congress.gov/img/member/116_rp_tx_28_cuellar_henry_200.jpg",
  933. "served_from": "2005-01-03",
  934. "served_to": null,
  935. "source": "congress.gov/v3",
  936. "state": "TX"
  937. },
  938. "C001066": {
  939. "bioguide": "C001066",
  940. "chamber": "House of Representatives",
  941. "district": null,
  942. "full_name": "Kathy Castor",
  943. "lis": null,
  944. "party": "D",
  945. "photo_url": "https://www.congress.gov/img/member/c001066_200.jpg",
  946. "served_from": "2007-01-03",
  947. "served_to": null,
  948. "source": "congress.gov/v3",
  949. "state": "FL"
  950. },
  951. "C001067": {
  952. "bioguide": "C001067",
  953. "chamber": "House of Representatives",
  954. "district": null,
  955. "full_name": "Yvette D. Clarke",
  956. "lis": null,
  957. "party": "D",
  958. "photo_url": "https://www.congress.gov/img/member/674dfc6b5c48ff736e6e1762_200.jpg",
  959. "served_from": "2007-01-03",
  960. "served_to": null,
  961. "source": "congress.gov/v3",
  962. "state": "NY"
  963. },
  964. "C001068": {
  965. "bioguide": "C001068",
  966. "chamber": "House of Representatives",
  967. "district": null,
  968. "full_name": "Steve Cohen",
  969. "lis": null,
  970. "party": "D",
  971. "photo_url": "https://www.congress.gov/img/member/c001068_200.jpg",
  972. "served_from": "2007-01-03",
  973. "served_to": null,
  974. "source": "congress.gov/v3",
  975. "state": "TN"
  976. },
  977. "C001069": {
  978. "bioguide": "C001069",
  979. "chamber": "House of Representatives",
  980. "district": null,
  981. "full_name": "Joe Courtney",
  982. "lis": null,
  983. "party": "D",
  984. "photo_url": "https://www.congress.gov/img/member/c001069_200.jpg",
  985. "served_from": "2007-01-03",
  986. "served_to": null,
  987. "source": "congress.gov/v3",
  988. "state": "CT"
  989. },
  990. "C001072": {
  991. "bioguide": "C001072",
  992. "chamber": "House of Representatives",
  993. "district": null,
  994. "full_name": "Andr\u00e9 Carson",
  995. "lis": null,
  996. "party": "D",
  997. "photo_url": "https://www.congress.gov/img/member/c001072_200.jpg",
  998. "served_from": "2008-01-03",
  999. "served_to": null,
  1000. "source": "congress.gov/v3",
  1001. "state": "IN"
  1002. },
  1003. "C001075": {
  1004. "bioguide": "C001075",
  1005. "chamber": "Senate",
  1006. "district": null,
  1007. "full_name": "Bill Cassidy",
  1008. "lis": "S373",
  1009. "party": "R",
  1010. "photo_url": "https://www.congress.gov/img/member/c001075_200.jpg",
  1011. "served_from": "2009-01-03",
  1012. "served_to": null,
  1013. "source": "congress.gov/v3",
  1014. "state": "LA"
  1015. },
  1016. "C001078": {
  1017. "bioguide": "C001078",
  1018. "chamber": "House of Representatives",
  1019. "district": null,
  1020. "full_name": "Gerald E. Connolly",
  1021. "lis": null,
  1022. "party": "D",
  1023. "photo_url": "https://www.congress.gov/img/member/c001078_200.jpg",
  1024. "served_from": "2009-01-03",
  1025. "served_to": "2025-01-03",
  1026. "source": "congress.gov/v3",
  1027. "state": "VA"
  1028. },
  1029. "C001080": {
  1030. "bioguide": "C001080",
  1031. "chamber": "House of Representatives",
  1032. "district": null,
  1033. "full_name": "Judy Chu",
  1034. "lis": null,
  1035. "party": "D",
  1036. "photo_url": "https://www.congress.gov/img/member/c001080_200.jpg",
  1037. "served_from": "2009-01-03",
  1038. "served_to": null,
  1039. "source": "congress.gov/v3",
  1040. "state": "CA"
  1041. },
  1042. "C001087": {
  1043. "bioguide": "C001087",
  1044. "chamber": "House of Representatives",
  1045. "district": null,
  1046. "full_name": "Eric A. \"Rick\" Crawford",
  1047. "lis": null,
  1048. "party": "R",
  1049. "photo_url": "https://www.congress.gov/img/member/6916065185b49de40f52cad4_200.jpg",
  1050. "served_from": "2011-01-03",
  1051. "served_to": null,
  1052. "source": "congress.gov/v3",
  1053. "state": "AR"
  1054. },
  1055. "C001088": {
  1056. "bioguide": "C001088",
  1057. "chamber": "Senate",
  1058. "district": null,
  1059. "full_name": "Christopher A. Coons",
  1060. "lis": "S337",
  1061. "party": "D",
  1062. "photo_url": "https://www.congress.gov/img/member/c001088_200.jpg",
  1063. "served_from": "2010-01-03",
  1064. "served_to": null,
  1065. "source": "congress.gov/v3",
  1066. "state": "DE"
  1067. },
  1068. "C001091": {
  1069. "bioguide": "C001091",
  1070. "chamber": "House of Representatives",
  1071. "district": null,
  1072. "full_name": "Joaquin Castro",
  1073. "lis": null,
  1074. "party": "D",
  1075. "photo_url": "https://www.congress.gov/img/member/69d7f5b07304cef7a0c977b1_200.jpg",
  1076. "served_from": "2013-01-03",
  1077. "served_to": null,
  1078. "source": "congress.gov/v3",
  1079. "state": "TX"
  1080. },
  1081. "C001095": {
  1082. "bioguide": "C001095",
  1083. "chamber": "Senate",
  1084. "district": null,
  1085. "full_name": "Tom Cotton",
  1086. "lis": "S374",
  1087. "party": "R",
  1088. "photo_url": "https://www.congress.gov/img/member/c001095_200.jpg",
  1089. "served_from": "2013-01-03",
  1090. "served_to": null,
  1091. "source": "congress.gov/v3",
  1092. "state": "AR"
  1093. },
  1094. "C001096": {
  1095. "bioguide": "C001096",
  1096. "chamber": "Senate",
  1097. "district": null,
  1098. "full_name": "Kevin Cramer",
  1099. "lis": "S398",
  1100. "party": "R",
  1101. "photo_url": "https://www.congress.gov/img/member/c001096_200.jpg",
  1102. "served_from": "2013-01-03",
  1103. "served_to": null,
  1104. "source": "congress.gov/v3",
  1105. "state": "ND"
  1106. },
  1107. "C001098": {
  1108. "bioguide": "C001098",
  1109. "chamber": "Senate",
  1110. "district": null,
  1111. "full_name": "Ted Cruz",
  1112. "lis": "S355",
  1113. "party": "R",
  1114. "photo_url": "https://www.congress.gov/img/member/c001098_200.jpg",
  1115. "served_from": "2013-01-03",
  1116. "served_to": null,
  1117. "source": "congress.gov/v3",
  1118. "state": "TX"
  1119. },
  1120. "C001101": {
  1121. "bioguide": "C001101",
  1122. "chamber": "House of Representatives",
  1123. "district": null,
  1124. "full_name": "Katherine M. Clark",
  1125. "lis": null,
  1126. "party": "D",
  1127. "photo_url": "https://www.congress.gov/img/member/c001101_200.jpg",
  1128. "served_from": "2013-01-03",
  1129. "served_to": null,
  1130. "source": "congress.gov/v3",
  1131. "state": "MA"
  1132. },
  1133. "C001103": {
  1134. "bioguide": "C001103",
  1135. "chamber": "House of Representatives",
  1136. "district": null,
  1137. "full_name": "Earl L. \"Buddy\" Carter",
  1138. "lis": null,
  1139. "party": "R",
  1140. "photo_url": "https://www.congress.gov/img/member/c001103_200.jpg",
  1141. "served_from": "2015-01-03",
  1142. "served_to": null,
  1143. "source": "congress.gov/v3",
  1144. "state": "GA"
  1145. },
  1146. "C001108": {
  1147. "bioguide": "C001108",
  1148. "chamber": "House of Representatives",
  1149. "district": null,
  1150. "full_name": "James Comer",
  1151. "lis": null,
  1152. "party": "R",
  1153. "photo_url": "https://www.congress.gov/img/member/c001108_200.jpg",
  1154. "served_from": "2016-01-03",
  1155. "served_to": null,
  1156. "source": "congress.gov/v3",
  1157. "state": "KY"
  1158. },
  1159. "C001110": {
  1160. "bioguide": "C001110",
  1161. "chamber": "House of Representatives",
  1162. "district": null,
  1163. "full_name": "J. Luis Correa",
  1164. "lis": null,
  1165. "party": "D",
  1166. "photo_url": "https://www.congress.gov/img/member/115_rp_ca_46_correa_j_200.jpg",
  1167. "served_from": "2017-01-03",
  1168. "served_to": null,
  1169. "source": "congress.gov/v3",
  1170. "state": "CA"
  1171. },
  1172. "C001112": {
  1173. "bioguide": "C001112",
  1174. "chamber": "House of Representatives",
  1175. "district": null,
  1176. "full_name": "Salud O. Carbajal",
  1177. "lis": null,
  1178. "party": "D",
  1179. "photo_url": "https://www.congress.gov/img/member/115_rp_ca_24_carbajal_salud_200.jpg",
  1180. "served_from": "2017-01-03",
  1181. "served_to": null,
  1182. "source": "congress.gov/v3",
  1183. "state": "CA"
  1184. },
  1185. "C001113": {
  1186. "bioguide": "C001113",
  1187. "chamber": "Senate",
  1188. "district": null,
  1189. "full_name": "Catherine Cortez Masto",
  1190. "lis": "S385",
  1191. "party": "D",
  1192. "photo_url": "https://www.congress.gov/img/member/c001113_200.jpg",
  1193. "served_from": "2017-01-03",
  1194. "served_to": null,
  1195. "source": "congress.gov/v3",
  1196. "state": "NV"
  1197. },
  1198. "C001114": {
  1199. "bioguide": "C001114",
  1200. "chamber": "Senate",
  1201. "district": null,
  1202. "full_name": "John R. Curtis",
  1203. "lis": "S431",
  1204. "party": "R",
  1205. "photo_url": "https://www.congress.gov/img/member/1b9d1007d6895a37da28a67cd8149803_200.jpg",
  1206. "served_from": "2017-01-03",
  1207. "served_to": null,
  1208. "source": "congress.gov/v3",
  1209. "state": "UT"
  1210. },
  1211. "C001115": {
  1212. "bioguide": "C001115",
  1213. "chamber": "House of Representatives",
  1214. "district": null,
  1215. "full_name": "Michael Cloud",
  1216. "lis": null,
  1217. "party": "R",
  1218. "photo_url": "https://www.congress.gov/img/member/115_rp_tx_27_cloud_michael_200.jpg",
  1219. "served_from": "2018-01-03",
  1220. "served_to": null,
  1221. "source": "congress.gov/v3",
  1222. "state": "TX"
  1223. },
  1224. "C001116": {
  1225. "bioguide": "C001116",
  1226. "chamber": "House of Representatives",
  1227. "district": null,
  1228. "full_name": "Andrew S. Clyde",
  1229. "lis": null,
  1230. "party": "R",
  1231. "photo_url": "https://www.congress.gov/img/member/c001116_200.jpg",
  1232. "served_from": "2021-01-03",
  1233. "served_to": null,
  1234. "source": "congress.gov/v3",
  1235. "state": "GA"
  1236. },
  1237. "C001117": {
  1238. "bioguide": "C001117",
  1239. "chamber": "House of Representatives",
  1240. "district": null,
  1241. "full_name": "Sean Casten",
  1242. "lis": null,
  1243. "party": "D",
  1244. "photo_url": "https://www.congress.gov/img/member/c001117_200.jpg",
  1245. "served_from": "2019-01-03",
  1246. "served_to": null,
  1247. "source": "congress.gov/v3",
  1248. "state": "IL"
  1249. },
  1250. "C001118": {
  1251. "bioguide": "C001118",
  1252. "chamber": "House of Representatives",
  1253. "district": null,
  1254. "full_name": "Ben Cline",
  1255. "lis": null,
  1256. "party": "R",
  1257. "photo_url": "https://www.congress.gov/img/member/69825a92eb30d32718993747_200.jpg",
  1258. "served_from": "2019-01-03",
  1259. "served_to": null,
  1260. "source": "congress.gov/v3",
  1261. "state": "VA"
  1262. },
  1263. "C001119": {
  1264. "bioguide": "C001119",
  1265. "chamber": "House of Representatives",
  1266. "district": null,
  1267. "full_name": "Angie Craig",
  1268. "lis": null,
  1269. "party": "D",
  1270. "photo_url": "https://www.congress.gov/img/member/c001119_200.jpg",
  1271. "served_from": "2019-01-03",
  1272. "served_to": null,
  1273. "source": "congress.gov/v3",
  1274. "state": "MN"
  1275. },
  1276. "C001120": {
  1277. "bioguide": "C001120",
  1278. "chamber": "House of Representatives",
  1279. "district": null,
  1280. "full_name": "Dan Crenshaw",
  1281. "lis": null,
  1282. "party": "R",
  1283. "photo_url": "https://www.congress.gov/img/member/698a13d0a7af728d4e6c2038_200.jpg",
  1284. "served_from": "2019-01-03",
  1285. "served_to": null,
  1286. "source": "congress.gov/v3",
  1287. "state": "TX"
  1288. },
  1289. "C001121": {
  1290. "bioguide": "C001121",
  1291. "chamber": "House of Representatives",
  1292. "district": null,
  1293. "full_name": "Jason Crow",
  1294. "lis": null,
  1295. "party": "D",
  1296. "photo_url": "https://www.congress.gov/img/member/69d7f4167304cef7a0c9779f_200.jpg",
  1297. "served_from": "2019-01-03",
  1298. "served_to": null,
  1299. "source": "congress.gov/v3",
  1300. "state": "CO"
  1301. },
  1302. "C001123": {
  1303. "bioguide": "C001123",
  1304. "chamber": "House of Representatives",
  1305. "district": null,
  1306. "full_name": "Gilbert Ray Cisneros",
  1307. "lis": null,
  1308. "party": "D",
  1309. "photo_url": "https://www.congress.gov/img/member/6807d8d63e52ea7df920ef05_200.jpg",
  1310. "served_from": "2019-01-03",
  1311. "served_to": null,
  1312. "source": "congress.gov/v3",
  1313. "state": "CA"
  1314. },
  1315. "C001125": {
  1316. "bioguide": "C001125",
  1317. "chamber": "House of Representatives",
  1318. "district": null,
  1319. "full_name": "Troy A. Carter",
  1320. "lis": null,
  1321. "party": "D",
  1322. "photo_url": "https://www.congress.gov/img/member/c001125_200.jpg",
  1323. "served_from": "2021-01-03",
  1324. "served_to": null,
  1325. "source": "congress.gov/v3",
  1326. "state": "LA"
  1327. },
  1328. "C001126": {
  1329. "bioguide": "C001126",
  1330. "chamber": "House of Representatives",
  1331. "district": null,
  1332. "full_name": "Mike Carey",
  1333. "lis": null,
  1334. "party": "R",
  1335. "photo_url": "https://www.congress.gov/img/member/c001126_200.jpg",
  1336. "served_from": "2021-01-03",
  1337. "served_to": null,
  1338. "source": "congress.gov/v3",
  1339. "state": "OH"
  1340. },
  1341. "C001127": {
  1342. "bioguide": "C001127",
  1343. "chamber": "House of Representatives",
  1344. "district": null,
  1345. "full_name": "Sheila Cherfilus-McCormick",
  1346. "lis": null,
  1347. "party": "D",
  1348. "photo_url": "https://www.congress.gov/img/member/c001127_200.jpg",
  1349. "served_from": "2022-01-03",
  1350. "served_to": "2026-01-03",
  1351. "source": "congress.gov/v3",
  1352. "state": "FL"
  1353. },
  1354. "C001129": {
  1355. "bioguide": "C001129",
  1356. "chamber": "House of Representatives",
  1357. "district": null,
  1358. "full_name": "Mike Collins",
  1359. "lis": null,
  1360. "party": "R",
  1361. "photo_url": "https://www.congress.gov/img/member/c001129_200.jpg",
  1362. "served_from": "2023-01-03",
  1363. "served_to": null,
  1364. "source": "congress.gov/v3",
  1365. "state": "GA"
  1366. },
  1367. "C001130": {
  1368. "bioguide": "C001130",
  1369. "chamber": "House of Representatives",
  1370. "district": null,
  1371. "full_name": "Jasmine Crockett",
  1372. "lis": null,
  1373. "party": "D",
  1374. "photo_url": "https://www.congress.gov/img/member/c001130_200.jpg",
  1375. "served_from": "2023-01-03",
  1376. "served_to": null,
  1377. "source": "congress.gov/v3",
  1378. "state": "TX"
  1379. },
  1380. "C001131": {
  1381. "bioguide": "C001131",
  1382. "chamber": "House of Representatives",
  1383. "district": null,
  1384. "full_name": "Greg Casar",
  1385. "lis": null,
  1386. "party": "D",
  1387. "photo_url": "https://www.congress.gov/img/member/c001131_200.jpg",
  1388. "served_from": "2023-01-03",
  1389. "served_to": null,
  1390. "source": "congress.gov/v3",
  1391. "state": "TX"
  1392. },
  1393. "C001132": {
  1394. "bioguide": "C001132",
  1395. "chamber": "House of Representatives",
  1396. "district": null,
  1397. "full_name": "Elijah Crane",
  1398. "lis": null,
  1399. "party": "R",
  1400. "photo_url": "https://www.congress.gov/img/member/c001132_200.jpg",
  1401. "served_from": "2023-01-03",
  1402. "served_to": null,
  1403. "source": "congress.gov/v3",
  1404. "state": "AZ"
  1405. },
  1406. "C001133": {
  1407. "bioguide": "C001133",
  1408. "chamber": "House of Representatives",
  1409. "district": null,
  1410. "full_name": "Juan Ciscomani",
  1411. "lis": null,
  1412. "party": "R",
  1413. "photo_url": "https://www.congress.gov/img/member/c001133_200.jpg",
  1414. "served_from": "2023-01-03",
  1415. "served_to": null,
  1416. "source": "congress.gov/v3",
  1417. "state": "AZ"
  1418. },
  1419. "C001136": {
  1420. "bioguide": "C001136",
  1421. "chamber": "House of Representatives",
  1422. "district": null,
  1423. "full_name": "Herbert C. Conaway",
  1424. "lis": null,
  1425. "party": "D",
  1426. "photo_url": "https://www.congress.gov/img/member/6774243a0b34857ecc90906b_200.jpg",
  1427. "served_from": "2025-01-03",
  1428. "served_to": null,
  1429. "source": "congress.gov/v3",
  1430. "state": "NJ"
  1431. },
  1432. "C001137": {
  1433. "bioguide": "C001137",
  1434. "chamber": "House of Representatives",
  1435. "district": null,
  1436. "full_name": "Jeff Crank",
  1437. "lis": null,
  1438. "party": "R",
  1439. "photo_url": "https://www.congress.gov/img/member/677424810b34857ecc909071_200.jpg",
  1440. "served_from": "2025-01-03",
  1441. "served_to": null,
  1442. "source": "congress.gov/v3",
  1443. "state": "CO"
  1444. },
  1445. "D000032": {
  1446. "bioguide": "D000032",
  1447. "chamber": "House of Representatives",
  1448. "district": null,
  1449. "full_name": "Byron Donalds",
  1450. "lis": null,
  1451. "party": "R",
  1452. "photo_url": "https://www.congress.gov/img/member/d000032_200.jpg",
  1453. "served_from": "2021-01-03",
  1454. "served_to": null,
  1455. "source": "congress.gov/v3",
  1456. "state": "FL"
  1457. },
  1458. "D000096": {
  1459. "bioguide": "D000096",
  1460. "chamber": "House of Representatives",
  1461. "district": null,
  1462. "full_name": "Danny K. Davis",
  1463. "lis": null,
  1464. "party": "D",
  1465. "photo_url": "https://www.congress.gov/img/member/116_rp_il_7_davis_danny_200.jpg",
  1466. "served_from": "1997-01-03",
  1467. "served_to": null,
  1468. "source": "congress.gov/v3",
  1469. "state": "IL"
  1470. },
  1471. "D000197": {
  1472. "bioguide": "D000197",
  1473. "chamber": "House of Representatives",
  1474. "district": null,
  1475. "full_name": "Diana DeGette",
  1476. "lis": null,
  1477. "party": "D",
  1478. "photo_url": "https://www.congress.gov/img/member/116_rp_co_1_degette_diana_200.jpg",
  1479. "served_from": "1997-01-03",
  1480. "served_to": null,
  1481. "source": "congress.gov/v3",
  1482. "state": "CO"
  1483. },
  1484. "D000216": {
  1485. "bioguide": "D000216",
  1486. "chamber": "House of Representatives",
  1487. "district": null,
  1488. "full_name": "Rosa L. DeLauro",
  1489. "lis": null,
  1490. "party": "D",
  1491. "photo_url": "https://www.congress.gov/img/member/116_rp_ct_3_delauro_rosa_200.jpg",
  1492. "served_from": "1991-01-03",
  1493. "served_to": null,
  1494. "source": "congress.gov/v3",
  1495. "state": "CT"
  1496. },
  1497. "D000230": {
  1498. "bioguide": "D000230",
  1499. "chamber": "House of Representatives",
  1500. "district": null,
  1501. "full_name": "Donald G. Davis",
  1502. "lis": null,
  1503. "party": "D",
  1504. "photo_url": "https://www.congress.gov/img/member/d000230_200.jpg",
  1505. "served_from": "2023-01-03",
  1506. "served_to": null,
  1507. "source": "congress.gov/v3",
  1508. "state": "NC"
  1509. },
  1510. "D000399": {
  1511. "bioguide": "D000399",
  1512. "chamber": "House of Representatives",
  1513. "district": null,
  1514. "full_name": "Lloyd Doggett",
  1515. "lis": null,
  1516. "party": "D",
  1517. "photo_url": "https://www.congress.gov/img/member/d000399_200.jpg",
  1518. "served_from": "1995-01-03",
  1519. "served_to": null,
  1520. "source": "congress.gov/v3",
  1521. "state": "TX"
  1522. },
  1523. "D000530": {
  1524. "bioguide": "D000530",
  1525. "chamber": "House of Representatives",
  1526. "district": null,
  1527. "full_name": "Christopher R. Deluzio",
  1528. "lis": null,
  1529. "party": "D",
  1530. "photo_url": "https://www.congress.gov/img/member/d000530_200.jpg",
  1531. "served_from": "2023-01-03",
  1532. "served_to": null,
  1533. "source": "congress.gov/v3",
  1534. "state": "PA"
  1535. },
  1536. "D000563": {
  1537. "bioguide": "D000563",
  1538. "chamber": "Senate",
  1539. "district": null,
  1540. "full_name": "Richard J. Durbin",
  1541. "lis": "S253",
  1542. "party": "D",
  1543. "photo_url": "https://www.congress.gov/img/member/d000563_200.jpg",
  1544. "served_from": "1983-01-03",
  1545. "served_to": null,
  1546. "source": "congress.gov/v3",
  1547. "state": "IL"
  1548. },
  1549. "D000594": {
  1550. "bioguide": "D000594",
  1551. "chamber": "House of Representatives",
  1552. "district": null,
  1553. "full_name": "Monica De La Cruz",
  1554. "lis": null,
  1555. "party": "R",
  1556. "photo_url": "https://www.congress.gov/img/member/66d9fd54f440bf1dc174fbf6_200.jpg",
  1557. "served_from": "2023-01-03",
  1558. "served_to": null,
  1559. "source": "congress.gov/v3",
  1560. "state": "TX"
  1561. },
  1562. "D000600": {
  1563. "bioguide": "D000600",
  1564. "chamber": "House of Representatives",
  1565. "district": null,
  1566. "full_name": "Mario Diaz-Balart",
  1567. "lis": null,
  1568. "party": "R",
  1569. "photo_url": "https://www.congress.gov/img/member/116_rp_fl_25_diazbalart_mario_200.jpg",
  1570. "served_from": "2003-01-03",
  1571. "served_to": null,
  1572. "source": "congress.gov/v3",
  1573. "state": "FL"
  1574. },
  1575. "D000616": {
  1576. "bioguide": "D000616",
  1577. "chamber": "House of Representatives",
  1578. "district": null,
  1579. "full_name": "Scott DesJarlais",
  1580. "lis": null,
  1581. "party": "R",
  1582. "photo_url": "https://www.congress.gov/img/member/d000616_200.jpg",
  1583. "served_from": "2011-01-03",
  1584. "served_to": null,
  1585. "source": "congress.gov/v3",
  1586. "state": "TN"
  1587. },
  1588. "D000617": {
  1589. "bioguide": "D000617",
  1590. "chamber": "House of Representatives",
  1591. "district": null,
  1592. "full_name": "Suzan K. DelBene",
  1593. "lis": null,
  1594. "party": "D",
  1595. "photo_url": "https://www.congress.gov/img/member/d000617_200.jpg",
  1596. "served_from": "2012-01-03",
  1597. "served_to": null,
  1598. "source": "congress.gov/v3",
  1599. "state": "WA"
  1600. },
  1601. "D000618": {
  1602. "bioguide": "D000618",
  1603. "chamber": "Senate",
  1604. "district": null,
  1605. "full_name": "Steve Daines",
  1606. "lis": "S375",
  1607. "party": "R",
  1608. "photo_url": "https://www.congress.gov/img/member/d000618_200.jpg",
  1609. "served_from": "2013-01-03",
  1610. "served_to": null,
  1611. "source": "congress.gov/v3",
  1612. "state": "MT"
  1613. },
  1614. "D000622": {
  1615. "bioguide": "D000622",
  1616. "chamber": "Senate",
  1617. "district": null,
  1618. "full_name": "Tammy Duckworth",
  1619. "lis": "S386",
  1620. "party": "D",
  1621. "photo_url": "https://www.congress.gov/img/member/d000622_200.jpg",
  1622. "served_from": "2013-01-03",
  1623. "served_to": null,
  1624. "source": "congress.gov/v3",
  1625. "state": "IL"
  1626. },
  1627. "D000623": {
  1628. "bioguide": "D000623",
  1629. "chamber": "House of Representatives",
  1630. "district": null,
  1631. "full_name": "Mark DeSaulnier",
  1632. "lis": null,
  1633. "party": "D",
  1634. "photo_url": "https://www.congress.gov/img/member/115_rp_ca_11_desaulnier_mark_200.jpg",
  1635. "served_from": "2015-01-03",
  1636. "served_to": null,
  1637. "source": "congress.gov/v3",
  1638. "state": "CA"
  1639. },
  1640. "D000624": {
  1641. "bioguide": "D000624",
  1642. "chamber": "House of Representatives",
  1643. "district": null,
  1644. "full_name": "Debbie Dingell",
  1645. "lis": null,
  1646. "party": "D",
  1647. "photo_url": "https://www.congress.gov/img/member/d000624_200.jpg",
  1648. "served_from": "2015-01-03",
  1649. "served_to": null,
  1650. "source": "congress.gov/v3",
  1651. "state": "MI"
  1652. },
  1653. "D000626": {
  1654. "bioguide": "D000626",
  1655. "chamber": "House of Representatives",
  1656. "district": null,
  1657. "full_name": "Warren Davidson",
  1658. "lis": null,
  1659. "party": "R",
  1660. "photo_url": "https://www.congress.gov/img/member/115_rp_oh_8_davidson_warren_200.jpg",
  1661. "served_from": "2016-01-03",
  1662. "served_to": null,
  1663. "source": "congress.gov/v3",
  1664. "state": "OH"
  1665. },
  1666. "D000628": {
  1667. "bioguide": "D000628",
  1668. "chamber": "House of Representatives",
  1669. "district": null,
  1670. "full_name": "Neal P. Dunn",
  1671. "lis": null,
  1672. "party": "R",
  1673. "photo_url": "https://www.congress.gov/img/member/115_rp_fl_2_dunn_neal_200.jpg",
  1674. "served_from": "2017-01-03",
  1675. "served_to": null,
  1676. "source": "congress.gov/v3",
  1677. "state": "FL"
  1678. },
  1679. "D000629": {
  1680. "bioguide": "D000629",
  1681. "chamber": "House of Representatives",
  1682. "district": null,
  1683. "full_name": "Sharice Davids",
  1684. "lis": null,
  1685. "party": "D",
  1686. "photo_url": "https://www.congress.gov/img/member/d000629_200.jpg",
  1687. "served_from": "2019-01-03",
  1688. "served_to": null,
  1689. "source": "congress.gov/v3",
  1690. "state": "KS"
  1691. },
  1692. "D000631": {
  1693. "bioguide": "D000631",
  1694. "chamber": "House of Representatives",
  1695. "district": null,
  1696. "full_name": "Madeleine Dean",
  1697. "lis": null,
  1698. "party": "D",
  1699. "photo_url": "https://www.congress.gov/img/member/d000631_200.jpg",
  1700. "served_from": "2019-01-03",
  1701. "served_to": null,
  1702. "source": "congress.gov/v3",
  1703. "state": "PA"
  1704. },
  1705. "D000634": {
  1706. "bioguide": "D000634",
  1707. "chamber": "House of Representatives",
  1708. "district": null,
  1709. "full_name": "Troy Downing",
  1710. "lis": null,
  1711. "party": "R",
  1712. "photo_url": "https://www.congress.gov/img/member/677424da0b34857ecc909077_200.jpg",
  1713. "served_from": "2025-01-03",
  1714. "served_to": null,
  1715. "source": "congress.gov/v3",
  1716. "state": "MT"
  1717. },
  1718. "D000635": {
  1719. "bioguide": "D000635",
  1720. "chamber": "House of Representatives",
  1721. "district": null,
  1722. "full_name": "Maxine Dexter",
  1723. "lis": null,
  1724. "party": "D",
  1725. "photo_url": "https://www.congress.gov/img/member/677425260b34857ecc90907d_200.jpg",
  1726. "served_from": "2025-01-03",
  1727. "served_to": null,
  1728. "source": "congress.gov/v3",
  1729. "state": "OR"
  1730. },
  1731. "E000071": {
  1732. "bioguide": "E000071",
  1733. "chamber": "House of Representatives",
  1734. "district": null,
  1735. "full_name": "Jake Ellzey",
  1736. "lis": null,
  1737. "party": "R",
  1738. "photo_url": "https://www.congress.gov/img/member/e000071_200.jpg",
  1739. "served_from": "2021-01-03",
  1740. "served_to": null,
  1741. "source": "congress.gov/v3",
  1742. "state": "TX"
  1743. },
  1744. "E000235": {
  1745. "bioguide": "E000235",
  1746. "chamber": "House of Representatives",
  1747. "district": null,
  1748. "full_name": "Mike Ezell",
  1749. "lis": null,
  1750. "party": "R",
  1751. "photo_url": "https://www.congress.gov/img/member/e000235_200.jpg",
  1752. "served_from": "2023-01-03",
  1753. "served_to": null,
  1754. "source": "congress.gov/v3",
  1755. "state": "MS"
  1756. },
  1757. "E000246": {
  1758. "bioguide": "E000246",
  1759. "chamber": "House of Representatives",
  1760. "district": null,
  1761. "full_name": "Chuck Edwards",
  1762. "lis": null,
  1763. "party": "R",
  1764. "photo_url": "https://www.congress.gov/img/member/e000246_200.jpg",
  1765. "served_from": "2023-01-03",
  1766. "served_to": null,
  1767. "source": "congress.gov/v3",
  1768. "state": "NC"
  1769. },
  1770. "E000294": {
  1771. "bioguide": "E000294",
  1772. "chamber": "House of Representatives",
  1773. "district": null,
  1774. "full_name": "Tom Emmer",
  1775. "lis": null,
  1776. "party": "R",
  1777. "photo_url": "https://www.congress.gov/img/member/e000294_200.jpg",
  1778. "served_from": "2015-01-03",
  1779. "served_to": null,
  1780. "source": "congress.gov/v3",
  1781. "state": "MN"
  1782. },
  1783. "E000295": {
  1784. "bioguide": "E000295",
  1785. "chamber": "Senate",
  1786. "district": null,
  1787. "full_name": "Joni Ernst",
  1788. "lis": "S376",
  1789. "party": "R",
  1790. "photo_url": "https://www.congress.gov/img/member/e000295_200.jpg",
  1791. "served_from": "2015-01-03",
  1792. "served_to": null,
  1793. "source": "congress.gov/v3",
  1794. "state": "IA"
  1795. },
  1796. "E000296": {
  1797. "bioguide": "E000296",
  1798. "chamber": "House of Representatives",
  1799. "district": null,
  1800. "full_name": "Dwight Evans",
  1801. "lis": null,
  1802. "party": "D",
  1803. "photo_url": "https://www.congress.gov/img/member/115_rp_pa_2_evans_dwight_200.jpg",
  1804. "served_from": "2016-01-03",
  1805. "served_to": null,
  1806. "source": "congress.gov/v3",
  1807. "state": "PA"
  1808. },
  1809. "E000297": {
  1810. "bioguide": "E000297",
  1811. "chamber": "House of Representatives",
  1812. "district": null,
  1813. "full_name": "Adriano Espaillat",
  1814. "lis": null,
  1815. "party": "D",
  1816. "photo_url": "https://www.congress.gov/img/member/e000297_200.jpg",
  1817. "served_from": "2017-01-03",
  1818. "served_to": null,
  1819. "source": "congress.gov/v3",
  1820. "state": "NY"
  1821. },
  1822. "E000298": {
  1823. "bioguide": "E000298",
  1824. "chamber": "House of Representatives",
  1825. "district": null,
  1826. "full_name": "Ron Estes",
  1827. "lis": null,
  1828. "party": "R",
  1829. "photo_url": "https://www.congress.gov/img/member/e000298_200.jpg",
  1830. "served_from": "2017-01-03",
  1831. "served_to": null,
  1832. "source": "congress.gov/v3",
  1833. "state": "KS"
  1834. },
  1835. "E000299": {
  1836. "bioguide": "E000299",
  1837. "chamber": "House of Representatives",
  1838. "district": null,
  1839. "full_name": "Veronica Escobar",
  1840. "lis": null,
  1841. "party": "D",
  1842. "photo_url": "https://www.congress.gov/img/member/e000299_200.jpg",
  1843. "served_from": "2019-01-03",
  1844. "served_to": null,
  1845. "source": "congress.gov/v3",
  1846. "state": "TX"
  1847. },
  1848. "E000300": {
  1849. "bioguide": "E000300",
  1850. "chamber": "House of Representatives",
  1851. "district": null,
  1852. "full_name": "Gabe Evans",
  1853. "lis": null,
  1854. "party": "R",
  1855. "photo_url": "https://www.congress.gov/img/member/677425730b34857ecc909083_200.jpg",
  1856. "served_from": "2025-01-03",
  1857. "served_to": null,
  1858. "source": "congress.gov/v3",
  1859. "state": "CO"
  1860. },
  1861. "E000301": {
  1862. "bioguide": "E000301",
  1863. "chamber": "House of Representatives",
  1864. "district": null,
  1865. "full_name": "Sarah Elfreth",
  1866. "lis": null,
  1867. "party": "D",
  1868. "photo_url": "https://www.congress.gov/img/member/677425dc0b34857ecc909089_200.jpg",
  1869. "served_from": "2025-01-03",
  1870. "served_to": null,
  1871. "source": "congress.gov/v3",
  1872. "state": "MD"
  1873. },
  1874. "F000110": {
  1875. "bioguide": "F000110",
  1876. "chamber": "House of Representatives",
  1877. "district": null,
  1878. "full_name": "Cleo Fields",
  1879. "lis": null,
  1880. "party": "D",
  1881. "photo_url": "https://www.congress.gov/img/member/677426250b34857ecc90908f_200.jpg",
  1882. "served_from": "1993-01-03",
  1883. "served_to": null,
  1884. "source": "congress.gov/v3",
  1885. "state": "LA"
  1886. },
  1887. "F000246": {
  1888. "bioguide": "F000246",
  1889. "chamber": "House of Representatives",
  1890. "district": null,
  1891. "full_name": "Pat Fallon",
  1892. "lis": null,
  1893. "party": "R",
  1894. "photo_url": "https://www.congress.gov/img/member/f000246_200.jpg",
  1895. "served_from": "2021-01-03",
  1896. "served_to": null,
  1897. "source": "congress.gov/v3",
  1898. "state": "TX"
  1899. },
  1900. "F000446": {
  1901. "bioguide": "F000446",
  1902. "chamber": "House of Representatives",
  1903. "district": null,
  1904. "full_name": "Randy Feenstra",
  1905. "lis": null,
  1906. "party": "R",
  1907. "photo_url": "https://www.congress.gov/img/member/f000446_200.jpg",
  1908. "served_from": "2021-01-03",
  1909. "served_to": null,
  1910. "source": "congress.gov/v3",
  1911. "state": "IA"
  1912. },
  1913. "F000450": {
  1914. "bioguide": "F000450",
  1915. "chamber": "House of Representatives",
  1916. "district": null,
  1917. "full_name": "Virginia Foxx",
  1918. "lis": null,
  1919. "party": "R",
  1920. "photo_url": "https://www.congress.gov/img/member/116_rp_nc_5_foxx_virginia_200.jpg",
  1921. "served_from": "2005-01-03",
  1922. "served_to": null,
  1923. "source": "congress.gov/v3",
  1924. "state": "NC"
  1925. },
  1926. "F000454": {
  1927. "bioguide": "F000454",
  1928. "chamber": "House of Representatives",
  1929. "district": null,
  1930. "full_name": "Bill Foster",
  1931. "lis": null,
  1932. "party": "D",
  1933. "photo_url": "https://www.congress.gov/img/member/f000454_200.jpg",
  1934. "served_from": "2008-01-03",
  1935. "served_to": null,
  1936. "source": "congress.gov/v3",
  1937. "state": "IL"
  1938. },
  1939. "F000459": {
  1940. "bioguide": "F000459",
  1941. "chamber": "House of Representatives",
  1942. "district": null,
  1943. "full_name": "Charles J. \"Chuck\" Fleischmann",
  1944. "lis": null,
  1945. "party": "R",
  1946. "photo_url": "https://www.congress.gov/img/member/f000459_200.jpg",
  1947. "served_from": "2011-01-03",
  1948. "served_to": null,
  1949. "source": "congress.gov/v3",
  1950. "state": "TN"
  1951. },
  1952. "F000462": {
  1953. "bioguide": "F000462",
  1954. "chamber": "House of Representatives",
  1955. "district": null,
  1956. "full_name": "Lois Frankel",
  1957. "lis": null,
  1958. "party": "D",
  1959. "photo_url": "https://www.congress.gov/img/member/f000462_200.jpg",
  1960. "served_from": "2013-01-03",
  1961. "served_to": null,
  1962. "source": "congress.gov/v3",
  1963. "state": "FL"
  1964. },
  1965. "F000463": {
  1966. "bioguide": "F000463",
  1967. "chamber": "Senate",
  1968. "district": null,
  1969. "full_name": "Deb Fischer",
  1970. "lis": "S357",
  1971. "party": "R",
  1972. "photo_url": "https://www.congress.gov/img/member/669ec7925d19788d1f2034a1_200.jpg",
  1973. "served_from": "2013-01-03",
  1974. "served_to": null,
  1975. "source": "congress.gov/v3",
  1976. "state": "NE"
  1977. },
  1978. "F000466": {
  1979. "bioguide": "F000466",
  1980. "chamber": "House of Representatives",
  1981. "district": null,
  1982. "full_name": "Brian K. Fitzpatrick",
  1983. "lis": null,
  1984. "party": "R",
  1985. "photo_url": "https://www.congress.gov/img/member/116_rp_pa_1_fitzpatrick_brian_200.jpg",
  1986. "served_from": "2017-01-03",
  1987. "served_to": null,
  1988. "source": "congress.gov/v3",
  1989. "state": "PA"
  1990. },
  1991. "F000468": {
  1992. "bioguide": "F000468",
  1993. "chamber": "House of Representatives",
  1994. "district": null,
  1995. "full_name": "Lizzie Fletcher",
  1996. "lis": null,
  1997. "party": "D",
  1998. "photo_url": "https://www.congress.gov/img/member/67813f931f9ad6ea6fb1eb6f_200.jpg",
  1999. "served_from": "2019-01-03",
  2000. "served_to": null,
  2001. "source": "congress.gov/v3",
  2002. "state": "TX"
  2003. },
  2004. "F000469": {
  2005. "bioguide": "F000469",
  2006. "chamber": "House of Representatives",
  2007. "district": null,
  2008. "full_name": "Russ Fulcher",
  2009. "lis": null,
  2010. "party": "R",
  2011. "photo_url": "https://www.congress.gov/img/member/f000469_200.jpg",
  2012. "served_from": "2019-01-03",
  2013. "served_to": null,
  2014. "source": "congress.gov/v3",
  2015. "state": "ID"
  2016. },
  2017. "F000470": {
  2018. "bioguide": "F000470",
  2019. "chamber": "House of Representatives",
  2020. "district": null,
  2021. "full_name": "Michelle Fischbach",
  2022. "lis": null,
  2023. "party": "R",
  2024. "photo_url": "https://www.congress.gov/img/member/f000470_200.jpg",
  2025. "served_from": "2021-01-03",
  2026. "served_to": null,
  2027. "source": "congress.gov/v3",
  2028. "state": "MN"
  2029. },
  2030. "F000471": {
  2031. "bioguide": "F000471",
  2032. "chamber": "House of Representatives",
  2033. "district": null,
  2034. "full_name": "Scott Fitzgerald",
  2035. "lis": null,
  2036. "party": "R",
  2037. "photo_url": "https://www.congress.gov/img/member/f000471_200.jpg",
  2038. "served_from": "2021-01-03",
  2039. "served_to": null,
  2040. "source": "congress.gov/v3",
  2041. "state": "WI"
  2042. },
  2043. "F000472": {
  2044. "bioguide": "F000472",
  2045. "chamber": "House of Representatives",
  2046. "district": null,
  2047. "full_name": "Scott Franklin",
  2048. "lis": null,
  2049. "party": "R",
  2050. "photo_url": "https://www.congress.gov/img/member/f000472_200.jpg",
  2051. "served_from": "2021-01-03",
  2052. "served_to": null,
  2053. "source": "congress.gov/v3",
  2054. "state": "FL"
  2055. },
  2056. "F000474": {
  2057. "bioguide": "F000474",
  2058. "chamber": "House of Representatives",
  2059. "district": null,
  2060. "full_name": "Mike Flood",
  2061. "lis": null,
  2062. "party": "R",
  2063. "photo_url": "https://www.congress.gov/img/member/67b4de4a61bd80d04553b0a5_200.jpg",
  2064. "served_from": "2022-01-03",
  2065. "served_to": null,
  2066. "source": "congress.gov/v3",
  2067. "state": "NE"
  2068. },
  2069. "F000475": {
  2070. "bioguide": "F000475",
  2071. "chamber": "House of Representatives",
  2072. "district": null,
  2073. "full_name": "Brad Finstad",
  2074. "lis": null,
  2075. "party": "R",
  2076. "photo_url": "https://www.congress.gov/img/member/f000475_200.jpg",
  2077. "served_from": "2022-01-03",
  2078. "served_to": null,
  2079. "source": "congress.gov/v3",
  2080. "state": "MN"
  2081. },
  2082. "F000476": {
  2083. "bioguide": "F000476",
  2084. "chamber": "House of Representatives",
  2085. "district": null,
  2086. "full_name": "Maxwell Frost",
  2087. "lis": null,
  2088. "party": "D",
  2089. "photo_url": "https://www.congress.gov/img/member/69a71e9a55f11d8282dde7a0_200.jpg",
  2090. "served_from": "2023-01-03",
  2091. "served_to": null,
  2092. "source": "congress.gov/v3",
  2093. "state": "FL"
  2094. },
  2095. "F000477": {
  2096. "bioguide": "F000477",
  2097. "chamber": "House of Representatives",
  2098. "district": null,
  2099. "full_name": "Valerie P. Foushee",
  2100. "lis": null,
  2101. "party": "D",
  2102. "photo_url": "https://www.congress.gov/img/member/68122e57246d1b6bd8d9f6ab_200.jpg",
  2103. "served_from": "2023-01-03",
  2104. "served_to": null,
  2105. "source": "congress.gov/v3",
  2106. "state": "NC"
  2107. },
  2108. "F000478": {
  2109. "bioguide": "F000478",
  2110. "chamber": "House of Representatives",
  2111. "district": null,
  2112. "full_name": "Russell Fry",
  2113. "lis": null,
  2114. "party": "R",
  2115. "photo_url": "https://www.congress.gov/img/member/f000478_200.jpg",
  2116. "served_from": "2023-01-03",
  2117. "served_to": null,
  2118. "source": "congress.gov/v3",
  2119. "state": "SC"
  2120. },
  2121. "F000479": {
  2122. "bioguide": "F000479",
  2123. "chamber": "Senate",
  2124. "district": null,
  2125. "full_name": "John Fetterman",
  2126. "lis": "S418",
  2127. "party": "D",
  2128. "photo_url": "https://www.congress.gov/img/member/f000479_200.jpg",
  2129. "served_from": "2023-01-03",
  2130. "served_to": null,
  2131. "source": "congress.gov/v3",
  2132. "state": "PA"
  2133. },
  2134. "F000480": {
  2135. "bioguide": "F000480",
  2136. "chamber": "House of Representatives",
  2137. "district": null,
  2138. "full_name": "Vince Fong",
  2139. "lis": null,
  2140. "party": "R",
  2141. "photo_url": "https://www.congress.gov/img/member/669ff04f5d19788d1f2034aa_200.jpg",
  2142. "served_from": "2024-01-03",
  2143. "served_to": null,
  2144. "source": "congress.gov/v3",
  2145. "state": "CA"
  2146. },
  2147. "F000481": {
  2148. "bioguide": "F000481",
  2149. "chamber": "House of Representatives",
  2150. "district": null,
  2151. "full_name": "Shomari Figures",
  2152. "lis": null,
  2153. "party": "D",
  2154. "photo_url": "https://www.congress.gov/img/member/68013eaa4e51529406f18e42_200.jpg",
  2155. "served_from": "2025-01-03",
  2156. "served_to": null,
  2157. "source": "congress.gov/v3",
  2158. "state": "AL"
  2159. },
  2160. "F000482": {
  2161. "bioguide": "F000482",
  2162. "chamber": "House of Representatives",
  2163. "district": null,
  2164. "full_name": "Julie Fedorchak",
  2165. "lis": null,
  2166. "party": "R",
  2167. "photo_url": "https://www.congress.gov/img/member/677426c20b34857ecc90909b_200.jpg",
  2168. "served_from": "2025-01-03",
  2169. "served_to": null,
  2170. "source": "congress.gov/v3",
  2171. "state": "ND"
  2172. },
  2173. "F000483": {
  2174. "bioguide": "F000483",
  2175. "chamber": "House of Representatives",
  2176. "district": null,
  2177. "full_name": "Laura Friedman",
  2178. "lis": null,
  2179. "party": "D",
  2180. "photo_url": "https://www.congress.gov/img/member/6a0f0dcb69b12040cf77e337_200.jpg",
  2181. "served_from": "2025-01-03",
  2182. "served_to": null,
  2183. "source": "congress.gov/v3",
  2184. "state": "CA"
  2185. },
  2186. "F000484": {
  2187. "bioguide": "F000484",
  2188. "chamber": "House of Representatives",
  2189. "district": null,
  2190. "full_name": "Randy Fine",
  2191. "lis": null,
  2192. "party": "R",
  2193. "photo_url": "https://www.congress.gov/img/member/67efda8c1b05a5a598f7fde0_200.jpg",
  2194. "served_from": "2025-01-03",
  2195. "served_to": null,
  2196. "source": "congress.gov/v3",
  2197. "state": "FL"
  2198. },
  2199. "F000485": {
  2200. "bioguide": "F000485",
  2201. "chamber": "House of Representatives",
  2202. "district": null,
  2203. "full_name": "Clay Fuller",
  2204. "lis": null,
  2205. "party": "R",
  2206. "photo_url": "https://www.congress.gov/img/member/69eb95e5277642362f6112c5_200.jpg",
  2207. "served_from": "2026-01-03",
  2208. "served_to": null,
  2209. "source": "congress.gov/v3",
  2210. "state": "GA"
  2211. },
  2212. "G000359": {
  2213. "bioguide": "G000359",
  2214. "chamber": "Senate",
  2215. "district": null,
  2216. "full_name": "Lindsey Graham",
  2217. "lis": "S293",
  2218. "party": "R",
  2219. "photo_url": "https://www.congress.gov/img/member/g000359_200.jpg",
  2220. "served_from": "1995-01-03",
  2221. "served_to": null,
  2222. "source": "congress.gov/v3",
  2223. "state": "SC"
  2224. },
  2225. "G000386": {
  2226. "bioguide": "G000386",
  2227. "chamber": "Senate",
  2228. "district": null,
  2229. "full_name": "Chuck Grassley",
  2230. "lis": "S153",
  2231. "party": "R",
  2232. "photo_url": "https://www.congress.gov/img/member/g000386_200.jpg",
  2233. "served_from": "1975-01-03",
  2234. "served_to": null,
  2235. "source": "congress.gov/v3",
  2236. "state": "IA"
  2237. },
  2238. "G000546": {
  2239. "bioguide": "G000546",
  2240. "chamber": "House of Representatives",
  2241. "district": null,
  2242. "full_name": "Sam Graves",
  2243. "lis": null,
  2244. "party": "R",
  2245. "photo_url": "https://www.congress.gov/img/member/g000546_200.jpg",
  2246. "served_from": "2001-01-03",
  2247. "served_to": null,
  2248. "source": "congress.gov/v3",
  2249. "state": "MO"
  2250. },
  2251. "G000551": {
  2252. "bioguide": "G000551",
  2253. "chamber": "House of Representatives",
  2254. "district": null,
  2255. "full_name": "Ra\u00fal M. Grijalva",
  2256. "lis": null,
  2257. "party": "D",
  2258. "photo_url": "https://www.congress.gov/img/member/g000551_200.jpg",
  2259. "served_from": "2003-01-03",
  2260. "served_to": "2025-01-03",
  2261. "source": "congress.gov/v3",
  2262. "state": "AZ"
  2263. },
  2264. "G000553": {
  2265. "bioguide": "G000553",
  2266. "chamber": "House of Representatives",
  2267. "district": null,
  2268. "full_name": "Al Green",
  2269. "lis": null,
  2270. "party": "D",
  2271. "photo_url": "https://www.congress.gov/img/member/116_rp_tx_9_green_al_200.jpg",
  2272. "served_from": "2005-01-03",
  2273. "served_to": null,
  2274. "source": "congress.gov/v3",
  2275. "state": "TX"
  2276. },
  2277. "G000555": {
  2278. "bioguide": "G000555",
  2279. "chamber": "Senate",
  2280. "district": null,
  2281. "full_name": "Kirsten E. Gillibrand",
  2282. "lis": "S331",
  2283. "party": "D",
  2284. "photo_url": "https://www.congress.gov/img/member/g000555_200.jpg",
  2285. "served_from": "2007-01-03",
  2286. "served_to": null,
  2287. "source": "congress.gov/v3",
  2288. "state": "NY"
  2289. },
  2290. "G000558": {
  2291. "bioguide": "G000558",
  2292. "chamber": "House of Representatives",
  2293. "district": null,
  2294. "full_name": "Brett Guthrie",
  2295. "lis": null,
  2296. "party": "R",
  2297. "photo_url": "https://www.congress.gov/img/member/g000558_200.jpg",
  2298. "served_from": "2009-01-03",
  2299. "served_to": null,
  2300. "source": "congress.gov/v3",
  2301. "state": "KY"
  2302. },
  2303. "G000559": {
  2304. "bioguide": "G000559",
  2305. "chamber": "House of Representatives",
  2306. "district": null,
  2307. "full_name": "John Garamendi",
  2308. "lis": null,
  2309. "party": "D",
  2310. "photo_url": "https://www.congress.gov/img/member/g000559_200.jpg",
  2311. "served_from": "2009-01-03",
  2312. "served_to": null,
  2313. "source": "congress.gov/v3",
  2314. "state": "CA"
  2315. },
  2316. "G000565": {
  2317. "bioguide": "G000565",
  2318. "chamber": "House of Representatives",
  2319. "district": null,
  2320. "full_name": "Paul A. Gosar",
  2321. "lis": null,
  2322. "party": "R",
  2323. "photo_url": "https://www.congress.gov/img/member/g000565_200.jpg",
  2324. "served_from": "2011-01-03",
  2325. "served_to": null,
  2326. "source": "congress.gov/v3",
  2327. "state": "AZ"
  2328. },
  2329. "G000568": {
  2330. "bioguide": "G000568",
  2331. "chamber": "House of Representatives",
  2332. "district": null,
  2333. "full_name": "H. Morgan Griffith",
  2334. "lis": null,
  2335. "party": "R",
  2336. "photo_url": "https://www.congress.gov/img/member/68094df86c2e6631263de737_200.jpg",
  2337. "served_from": "2011-01-03",
  2338. "served_to": null,
  2339. "source": "congress.gov/v3",
  2340. "state": "VA"
  2341. },
  2342. "G000574": {
  2343. "bioguide": "G000574",
  2344. "chamber": "Senate",
  2345. "district": null,
  2346. "full_name": "Ruben Gallego",
  2347. "lis": "S432",
  2348. "party": "D",
  2349. "photo_url": "https://www.congress.gov/img/member/c6870f487cf4bc9a568d8afbe61d754b_200.jpg",
  2350. "served_from": "2015-01-03",
  2351. "served_to": null,
  2352. "source": "congress.gov/v3",
  2353. "state": "AZ"
  2354. },
  2355. "G000576": {
  2356. "bioguide": "G000576",
  2357. "chamber": "House of Representatives",
  2358. "district": null,
  2359. "full_name": "Glenn Grothman",
  2360. "lis": null,
  2361. "party": "R",
  2362. "photo_url": "https://www.congress.gov/img/member/116_rp_wi_6_grothman_glenn_200.jpg",
  2363. "served_from": "2015-01-03",
  2364. "served_to": null,
  2365. "source": "congress.gov/v3",
  2366. "state": "WI"
  2367. },
  2368. "G000581": {
  2369. "bioguide": "G000581",
  2370. "chamber": "House of Representatives",
  2371. "district": null,
  2372. "full_name": "Vicente Gonzalez",
  2373. "lis": null,
  2374. "party": "D",
  2375. "photo_url": "https://www.congress.gov/img/member/115_rp_tx_15_gonzalez_vicente_200.jpg",
  2376. "served_from": "2017-01-03",
  2377. "served_to": null,
  2378. "source": "congress.gov/v3",
  2379. "state": "TX"
  2380. },
  2381. "G000583": {
  2382. "bioguide": "G000583",
  2383. "chamber": "House of Representatives",
  2384. "district": null,
  2385. "full_name": "Josh Gottheimer",
  2386. "lis": null,
  2387. "party": "D",
  2388. "photo_url": "https://www.congress.gov/img/member/115_rp_nj_5_gottheimer_josh_200.jpg",
  2389. "served_from": "2017-01-03",
  2390. "served_to": null,
  2391. "source": "congress.gov/v3",
  2392. "state": "NJ"
  2393. },
  2394. "G000585": {
  2395. "bioguide": "G000585",
  2396. "chamber": "House of Representatives",
  2397. "district": null,
  2398. "full_name": "Jimmy Gomez",
  2399. "lis": null,
  2400. "party": "D",
  2401. "photo_url": "https://www.congress.gov/img/member/115_rp_ca_34_gomez_jimmy_200.jpg",
  2402. "served_from": "2017-01-03",
  2403. "served_to": null,
  2404. "source": "congress.gov/v3",
  2405. "state": "CA"
  2406. },
  2407. "G000586": {
  2408. "bioguide": "G000586",
  2409. "chamber": "House of Representatives",
  2410. "district": null,
  2411. "full_name": "Jes\u00fas G. \"Chuy\" Garc\u00eda",
  2412. "lis": null,
  2413. "party": "D",
  2414. "photo_url": "https://www.congress.gov/img/member/g000586_200.jpg",
  2415. "served_from": "2019-01-03",
  2416. "served_to": null,
  2417. "source": "congress.gov/v3",
  2418. "state": "IL"
  2419. },
  2420. "G000587": {
  2421. "bioguide": "G000587",
  2422. "chamber": "House of Representatives",
  2423. "district": null,
  2424. "full_name": "Sylvia R. Garcia",
  2425. "lis": null,
  2426. "party": "D",
  2427. "photo_url": "https://www.congress.gov/img/member/g000587_200.jpg",
  2428. "served_from": "2019-01-03",
  2429. "served_to": null,
  2430. "source": "congress.gov/v3",
  2431. "state": "TX"
  2432. },
  2433. "G000589": {
  2434. "bioguide": "G000589",
  2435. "chamber": "House of Representatives",
  2436. "district": null,
  2437. "full_name": "Lance Gooden",
  2438. "lis": null,
  2439. "party": "R",
  2440. "photo_url": "https://www.congress.gov/img/member/g000589_200.jpg",
  2441. "served_from": "2019-01-03",
  2442. "served_to": null,
  2443. "source": "congress.gov/v3",
  2444. "state": "TX"
  2445. },
  2446. "G000590": {
  2447. "bioguide": "G000590",
  2448. "chamber": "House of Representatives",
  2449. "district": null,
  2450. "full_name": "Mark E. Green",
  2451. "lis": null,
  2452. "party": "R",
  2453. "photo_url": "https://www.congress.gov/img/member/g000590_200.jpg",
  2454. "served_from": "2019-01-03",
  2455. "served_to": "2025-01-03",
  2456. "source": "congress.gov/v3",
  2457. "state": "TN"
  2458. },
  2459. "G000591": {
  2460. "bioguide": "G000591",
  2461. "chamber": "House of Representatives",
  2462. "district": null,
  2463. "full_name": "Michael Guest",
  2464. "lis": null,
  2465. "party": "R",
  2466. "photo_url": "https://www.congress.gov/img/member/g000591_200.jpg",
  2467. "served_from": "2019-01-03",
  2468. "served_to": null,
  2469. "source": "congress.gov/v3",
  2470. "state": "MS"
  2471. },
  2472. "G000592": {
  2473. "bioguide": "G000592",
  2474. "chamber": "House of Representatives",
  2475. "district": null,
  2476. "full_name": "Jared F. Golden",
  2477. "lis": null,
  2478. "party": "D",
  2479. "photo_url": "https://www.congress.gov/img/member/g000592_200.jpg",
  2480. "served_from": "2019-01-03",
  2481. "served_to": null,
  2482. "source": "congress.gov/v3",
  2483. "state": "ME"
  2484. },
  2485. "G000593": {
  2486. "bioguide": "G000593",
  2487. "chamber": "House of Representatives",
  2488. "district": null,
  2489. "full_name": "Carlos A. Gimenez",
  2490. "lis": null,
  2491. "party": "R",
  2492. "photo_url": "https://www.congress.gov/img/member/g000593_200.jpg",
  2493. "served_from": "2021-01-03",
  2494. "served_to": null,
  2495. "source": "congress.gov/v3",
  2496. "state": "FL"
  2497. },
  2498. "G000594": {
  2499. "bioguide": "G000594",
  2500. "chamber": "House of Representatives",
  2501. "district": null,
  2502. "full_name": "Tony Gonzales",
  2503. "lis": null,
  2504. "party": "R",
  2505. "photo_url": "https://www.congress.gov/img/member/g000594_200.jpg",
  2506. "served_from": "2021-01-03",
  2507. "served_to": "2026-01-03",
  2508. "source": "congress.gov/v3",
  2509. "state": "TX"
  2510. },
  2511. "G000596": {
  2512. "bioguide": "G000596",
  2513. "chamber": "House of Representatives",
  2514. "district": null,
  2515. "full_name": "Marjorie Taylor Greene",
  2516. "lis": null,
  2517. "party": "R",
  2518. "photo_url": "https://www.congress.gov/img/member/g000596_200.jpg",
  2519. "served_from": "2021-01-03",
  2520. "served_to": "2026-01-03",
  2521. "source": "congress.gov/v3",
  2522. "state": "GA"
  2523. },
  2524. "G000597": {
  2525. "bioguide": "G000597",
  2526. "chamber": "House of Representatives",
  2527. "district": null,
  2528. "full_name": "Andrew R. Garbarino",
  2529. "lis": null,
  2530. "party": "R",
  2531. "photo_url": "https://www.congress.gov/img/member/g000597_200.jpg",
  2532. "served_from": "2021-01-03",
  2533. "served_to": null,
  2534. "source": "congress.gov/v3",
  2535. "state": "NY"
  2536. },
  2537. "G000598": {
  2538. "bioguide": "G000598",
  2539. "chamber": "House of Representatives",
  2540. "district": null,
  2541. "full_name": "Robert Garcia",
  2542. "lis": null,
  2543. "party": "D",
  2544. "photo_url": "https://www.congress.gov/img/member/g000598_200.jpg",
  2545. "served_from": "2023-01-03",
  2546. "served_to": null,
  2547. "source": "congress.gov/v3",
  2548. "state": "CA"
  2549. },
  2550. "G000599": {
  2551. "bioguide": "G000599",
  2552. "chamber": "House of Representatives",
  2553. "district": null,
  2554. "full_name": "Daniel S. Goldman",
  2555. "lis": null,
  2556. "party": "D",
  2557. "photo_url": "https://www.congress.gov/img/member/g000599_200.jpg",
  2558. "served_from": "2023-01-03",
  2559. "served_to": null,
  2560. "source": "congress.gov/v3",
  2561. "state": "NY"
  2562. },
  2563. "G000600": {
  2564. "bioguide": "G000600",
  2565. "chamber": "House of Representatives",
  2566. "district": null,
  2567. "full_name": "Marie Gluesenkamp Perez",
  2568. "lis": null,
  2569. "party": "D",
  2570. "photo_url": "https://www.congress.gov/img/member/g000600_200.jpg",
  2571. "served_from": "2023-01-03",
  2572. "served_to": null,
  2573. "source": "congress.gov/v3",
  2574. "state": "WA"
  2575. },
  2576. "G000601": {
  2577. "bioguide": "G000601",
  2578. "chamber": "House of Representatives",
  2579. "district": null,
  2580. "full_name": "Craig A. Goldman",
  2581. "lis": null,
  2582. "party": "R",
  2583. "photo_url": "https://www.congress.gov/img/member/6774277d0b34857ecc9090a7_200.jpg",
  2584. "served_from": "2025-01-03",
  2585. "served_to": null,
  2586. "source": "congress.gov/v3",
  2587. "state": "TX"
  2588. },
  2589. "G000602": {
  2590. "bioguide": "G000602",
  2591. "chamber": "House of Representatives",
  2592. "district": null,
  2593. "full_name": "Laura Gillen",
  2594. "lis": null,
  2595. "party": "D",
  2596. "photo_url": "https://www.congress.gov/img/member/677427de0b34857ecc9090ad_200.jpg",
  2597. "served_from": "2025-01-03",
  2598. "served_to": null,
  2599. "source": "congress.gov/v3",
  2600. "state": "NY"
  2601. },
  2602. "G000603": {
  2603. "bioguide": "G000603",
  2604. "chamber": "House of Representatives",
  2605. "district": null,
  2606. "full_name": "Brandon Gill",
  2607. "lis": null,
  2608. "party": "R",
  2609. "photo_url": "https://www.congress.gov/img/member/677428ac0b34857ecc9090b3_200.jpg",
  2610. "served_from": "2025-01-03",
  2611. "served_to": null,
  2612. "source": "congress.gov/v3",
  2613. "state": "TX"
  2614. },
  2615. "G000604": {
  2616. "bioguide": "G000604",
  2617. "chamber": "House of Representatives",
  2618. "district": null,
  2619. "full_name": "Maggie Goodlander",
  2620. "lis": null,
  2621. "party": "D",
  2622. "photo_url": "https://www.congress.gov/img/member/678ff62d66bf616cf1a7ce13_200.jpg",
  2623. "served_from": "2025-01-03",
  2624. "served_to": null,
  2625. "source": "congress.gov/v3",
  2626. "state": "NH"
  2627. },
  2628. "G000605": {
  2629. "bioguide": "G000605",
  2630. "chamber": "House of Representatives",
  2631. "district": null,
  2632. "full_name": "Adam Gray",
  2633. "lis": null,
  2634. "party": "D",
  2635. "photo_url": "https://www.congress.gov/img/member/67742a160b34857ecc9090bf_200.jpg",
  2636. "served_from": "2025-01-03",
  2637. "served_to": null,
  2638. "source": "congress.gov/v3",
  2639. "state": "CA"
  2640. },
  2641. "G000606": {
  2642. "bioguide": "G000606",
  2643. "chamber": "House of Representatives",
  2644. "district": null,
  2645. "full_name": "Adelita S. Grijalva",
  2646. "lis": null,
  2647. "party": "D",
  2648. "photo_url": "https://www.congress.gov/img/member/6915fa2585b49de40f52cacb_200.jpg",
  2649. "served_from": "2025-01-03",
  2650. "served_to": null,
  2651. "source": "congress.gov/v3",
  2652. "state": "AZ"
  2653. },
  2654. "H000273": {
  2655. "bioguide": "H000273",
  2656. "chamber": "Senate",
  2657. "district": null,
  2658. "full_name": "John W. Hickenlooper",
  2659. "lis": "S408",
  2660. "party": "D",
  2661. "photo_url": "https://www.congress.gov/img/member/h000273_200.jpg",
  2662. "served_from": "2021-01-03",
  2663. "served_to": null,
  2664. "source": "congress.gov/v3",
  2665. "state": "CO"
  2666. },
  2667. "H000601": {
  2668. "bioguide": "H000601",
  2669. "chamber": "Senate",
  2670. "district": null,
  2671. "full_name": "Bill Hagerty",
  2672. "lis": "S407",
  2673. "party": "R",
  2674. "photo_url": "https://www.congress.gov/img/member/h000601_200.jpg",
  2675. "served_from": "2021-01-03",
  2676. "served_to": null,
  2677. "source": "congress.gov/v3",
  2678. "state": "TN"
  2679. },
  2680. "H000874": {
  2681. "bioguide": "H000874",
  2682. "chamber": "House of Representatives",
  2683. "district": null,
  2684. "full_name": "Steny H. Hoyer",
  2685. "lis": null,
  2686. "party": "D",
  2687. "photo_url": "https://www.congress.gov/img/member/116_rp_md_5_hoyer_steny_200.jpg",
  2688. "served_from": "1981-01-03",
  2689. "served_to": null,
  2690. "source": "congress.gov/v3",
  2691. "state": "MD"
  2692. },
  2693. "H001042": {
  2694. "bioguide": "H001042",
  2695. "chamber": "Senate",
  2696. "district": null,
  2697. "full_name": "Mazie K. Hirono",
  2698. "lis": "S361",
  2699. "party": "D",
  2700. "photo_url": "https://www.congress.gov/img/member/h001042_200.jpg",
  2701. "served_from": "2007-01-03",
  2702. "served_to": null,
  2703. "source": "congress.gov/v3",
  2704. "state": "HI"
  2705. },
  2706. "H001046": {
  2707. "bioguide": "H001046",
  2708. "chamber": "Senate",
  2709. "district": null,
  2710. "full_name": "Martin Heinrich",
  2711. "lis": "S359",
  2712. "party": "D",
  2713. "photo_url": "https://www.congress.gov/img/member/h001046_200.jpg",
  2714. "served_from": "2009-01-03",
  2715. "served_to": null,
  2716. "source": "congress.gov/v3",
  2717. "state": "NM"
  2718. },
  2719. "H001047": {
  2720. "bioguide": "H001047",
  2721. "chamber": "House of Representatives",
  2722. "district": null,
  2723. "full_name": "James A. Himes",
  2724. "lis": null,
  2725. "party": "D",
  2726. "photo_url": "https://www.congress.gov/img/member/h001047_200.jpg",
  2727. "served_from": "2009-01-03",
  2728. "served_to": null,
  2729. "source": "congress.gov/v3",
  2730. "state": "CT"
  2731. },
  2732. "H001052": {
  2733. "bioguide": "H001052",
  2734. "chamber": "House of Representatives",
  2735. "district": null,
  2736. "full_name": "Andy Harris",
  2737. "lis": null,
  2738. "party": "R",
  2739. "photo_url": "https://www.congress.gov/img/member/117_rp_md_1_harris_andy_200.jpg",
  2740. "served_from": "2011-01-03",
  2741. "served_to": null,
  2742. "source": "congress.gov/v3",
  2743. "state": "MD"
  2744. },
  2745. "H001058": {
  2746. "bioguide": "H001058",
  2747. "chamber": "House of Representatives",
  2748. "district": null,
  2749. "full_name": "Bill Huizenga",
  2750. "lis": null,
  2751. "party": "R",
  2752. "photo_url": "https://www.congress.gov/img/member/h001058_200.jpg",
  2753. "served_from": "2011-01-03",
  2754. "served_to": null,
  2755. "source": "congress.gov/v3",
  2756. "state": "MI"
  2757. },
  2758. "H001061": {
  2759. "bioguide": "H001061",
  2760. "chamber": "Senate",
  2761. "district": null,
  2762. "full_name": "John Hoeven",
  2763. "lis": "S344",
  2764. "party": "R",
  2765. "photo_url": "https://www.congress.gov/img/member/h001061_200.jpg",
  2766. "served_from": "2011-01-03",
  2767. "served_to": null,
  2768. "source": "congress.gov/v3",
  2769. "state": "ND"
  2770. },
  2771. "H001066": {
  2772. "bioguide": "H001066",
  2773. "chamber": "House of Representatives",
  2774. "district": null,
  2775. "full_name": "Steven Horsford",
  2776. "lis": null,
  2777. "party": "D",
  2778. "photo_url": "https://www.congress.gov/img/member/h001066_200.jpg",
  2779. "served_from": "2013-01-03",
  2780. "served_to": null,
  2781. "source": "congress.gov/v3",
  2782. "state": "NV"
  2783. },
  2784. "H001067": {
  2785. "bioguide": "H001067",
  2786. "chamber": "House of Representatives",
  2787. "district": null,
  2788. "full_name": "Richard Hudson",
  2789. "lis": null,
  2790. "party": "R",
  2791. "photo_url": "https://www.congress.gov/img/member/h001067_200.jpg",
  2792. "served_from": "2013-01-03",
  2793. "served_to": null,
  2794. "source": "congress.gov/v3",
  2795. "state": "NC"
  2796. },
  2797. "H001068": {
  2798. "bioguide": "H001068",
  2799. "chamber": "House of Representatives",
  2800. "district": null,
  2801. "full_name": "Jared Huffman",
  2802. "lis": null,
  2803. "party": "D",
  2804. "photo_url": "https://www.congress.gov/img/member/h001068_200.jpg",
  2805. "served_from": "2013-01-03",
  2806. "served_to": null,
  2807. "source": "congress.gov/v3",
  2808. "state": "CA"
  2809. },
  2810. "H001072": {
  2811. "bioguide": "H001072",
  2812. "chamber": "House of Representatives",
  2813. "district": null,
  2814. "full_name": "J. French Hill",
  2815. "lis": null,
  2816. "party": "R",
  2817. "photo_url": "https://www.congress.gov/img/member/h001072_200.jpg",
  2818. "served_from": "2015-01-03",
  2819. "served_to": null,
  2820. "source": "congress.gov/v3",
  2821. "state": "AR"
  2822. },
  2823. "H001076": {
  2824. "bioguide": "H001076",
  2825. "chamber": "Senate",
  2826. "district": null,
  2827. "full_name": "Margaret Wood Hassan",
  2828. "lis": "S388",
  2829. "party": "D",
  2830. "photo_url": "https://www.congress.gov/img/member/h001076_200.jpg",
  2831. "served_from": "2017-01-03",
  2832. "served_to": null,
  2833. "source": "congress.gov/v3",
  2834. "state": "NH"
  2835. },
  2836. "H001077": {
  2837. "bioguide": "H001077",
  2838. "chamber": "House of Representatives",
  2839. "district": null,
  2840. "full_name": "Clay Higgins",
  2841. "lis": null,
  2842. "party": "R",
  2843. "photo_url": "https://www.congress.gov/img/member/h001077_200.jpg",
  2844. "served_from": "2017-01-03",
  2845. "served_to": null,
  2846. "source": "congress.gov/v3",
  2847. "state": "LA"
  2848. },
  2849. "H001079": {
  2850. "bioguide": "H001079",
  2851. "chamber": "Senate",
  2852. "district": null,
  2853. "full_name": "Cindy Hyde-Smith",
  2854. "lis": "S395",
  2855. "party": "R",
  2856. "photo_url": "https://www.congress.gov/img/member/h001079_200.jpg",
  2857. "served_from": "2018-01-03",
  2858. "served_to": null,
  2859. "source": "congress.gov/v3",
  2860. "state": "MS"
  2861. },
  2862. "H001081": {
  2863. "bioguide": "H001081",
  2864. "chamber": "House of Representatives",
  2865. "district": null,
  2866. "full_name": "Jahana Hayes",
  2867. "lis": null,
  2868. "party": "D",
  2869. "photo_url": "https://www.congress.gov/img/member/h001081_200.jpg",
  2870. "served_from": "2019-01-03",
  2871. "served_to": null,
  2872. "source": "congress.gov/v3",
  2873. "state": "CT"
  2874. },
  2875. "H001082": {
  2876. "bioguide": "H001082",
  2877. "chamber": "House of Representatives",
  2878. "district": null,
  2879. "full_name": "Kevin Hern",
  2880. "lis": null,
  2881. "party": "R",
  2882. "photo_url": "https://www.congress.gov/img/member/h001082_200.jpg",
  2883. "served_from": "2018-01-03",
  2884. "served_to": null,
  2885. "source": "congress.gov/v3",
  2886. "state": "OK"
  2887. },
  2888. "H001085": {
  2889. "bioguide": "H001085",
  2890. "chamber": "House of Representatives",
  2891. "district": null,
  2892. "full_name": "Chrissy Houlahan",
  2893. "lis": null,
  2894. "party": "D",
  2895. "photo_url": "https://www.congress.gov/img/member/681bc0e6b763f94d6e471f50_200.jpg",
  2896. "served_from": "2019-01-03",
  2897. "served_to": null,
  2898. "source": "congress.gov/v3",
  2899. "state": "PA"
  2900. },
  2901. "H001086": {
  2902. "bioguide": "H001086",
  2903. "chamber": "House of Representatives",
  2904. "district": null,
  2905. "full_name": "Diana Harshbarger",
  2906. "lis": null,
  2907. "party": "R",
  2908. "photo_url": "https://www.congress.gov/img/member/h001086_200.jpg",
  2909. "served_from": "2021-01-03",
  2910. "served_to": null,
  2911. "source": "congress.gov/v3",
  2912. "state": "TN"
  2913. },
  2914. "H001089": {
  2915. "bioguide": "H001089",
  2916. "chamber": "Senate",
  2917. "district": null,
  2918. "full_name": "Josh Hawley",
  2919. "lis": "S399",
  2920. "party": "R",
  2921. "photo_url": "https://www.congress.gov/img/member/h001089_200.jpg",
  2922. "served_from": "2019-01-03",
  2923. "served_to": null,
  2924. "source": "congress.gov/v3",
  2925. "state": "MO"
  2926. },
  2927. "H001090": {
  2928. "bioguide": "H001090",
  2929. "chamber": "House of Representatives",
  2930. "district": null,
  2931. "full_name": "Josh Harder",
  2932. "lis": null,
  2933. "party": "D",
  2934. "photo_url": "https://www.congress.gov/img/member/h001090_200.jpg",
  2935. "served_from": "2019-01-03",
  2936. "served_to": null,
  2937. "source": "congress.gov/v3",
  2938. "state": "CA"
  2939. },
  2940. "H001091": {
  2941. "bioguide": "H001091",
  2942. "chamber": "House of Representatives",
  2943. "district": null,
  2944. "full_name": "Ashley Hinson",
  2945. "lis": null,
  2946. "party": "R",
  2947. "photo_url": "https://www.congress.gov/img/member/677ed0c7514c773869b6b920_200.jpg",
  2948. "served_from": "2021-01-03",
  2949. "served_to": null,
  2950. "source": "congress.gov/v3",
  2951. "state": "IA"
  2952. },
  2953. "H001093": {
  2954. "bioguide": "H001093",
  2955. "chamber": "House of Representatives",
  2956. "district": null,
  2957. "full_name": "Erin Houchin",
  2958. "lis": null,
  2959. "party": "R",
  2960. "photo_url": "https://www.congress.gov/img/member/h001093_200.jpg",
  2961. "served_from": "2023-01-03",
  2962. "served_to": null,
  2963. "source": "congress.gov/v3",
  2964. "state": "IN"
  2965. },
  2966. "H001094": {
  2967. "bioguide": "H001094",
  2968. "chamber": "House of Representatives",
  2969. "district": null,
  2970. "full_name": "Val T. Hoyle",
  2971. "lis": null,
  2972. "party": "D",
  2973. "photo_url": "https://www.congress.gov/img/member/h001094_200.jpg",
  2974. "served_from": "2023-01-03",
  2975. "served_to": null,
  2976. "source": "congress.gov/v3",
  2977. "state": "OR"
  2978. },
  2979. "H001095": {
  2980. "bioguide": "H001095",
  2981. "chamber": "House of Representatives",
  2982. "district": null,
  2983. "full_name": "Wesley Hunt",
  2984. "lis": null,
  2985. "party": "R",
  2986. "photo_url": "https://www.congress.gov/img/member/h001095_200.jpg",
  2987. "served_from": "2023-01-03",
  2988. "served_to": null,
  2989. "source": "congress.gov/v3",
  2990. "state": "TX"
  2991. },
  2992. "H001096": {
  2993. "bioguide": "H001096",
  2994. "chamber": "House of Representatives",
  2995. "district": null,
  2996. "full_name": "Harriet M. Hageman",
  2997. "lis": null,
  2998. "party": "R",
  2999. "photo_url": "https://www.congress.gov/img/member/h001096_200.jpg",
  3000. "served_from": "2023-01-03",
  3001. "served_to": null,
  3002. "source": "congress.gov/v3",
  3003. "state": "WY"
  3004. },
  3005. "H001098": {
  3006. "bioguide": "H001098",
  3007. "chamber": "House of Representatives",
  3008. "district": null,
  3009. "full_name": "Abraham J. Hamadeh",
  3010. "lis": null,
  3011. "party": "R",
  3012. "photo_url": "https://www.congress.gov/img/member/67742a6f0b34857ecc9090c5_200.jpg",
  3013. "served_from": "2025-01-03",
  3014. "served_to": null,
  3015. "source": "congress.gov/v3",
  3016. "state": "AZ"
  3017. },
  3018. "H001099": {
  3019. "bioguide": "H001099",
  3020. "chamber": "House of Representatives",
  3021. "district": null,
  3022. "full_name": "Mike Haridopolos",
  3023. "lis": null,
  3024. "party": "R",
  3025. "photo_url": "https://www.congress.gov/img/member/67742ab50b34857ecc9090cb_200.jpg",
  3026. "served_from": "2025-01-03",
  3027. "served_to": null,
  3028. "source": "congress.gov/v3",
  3029. "state": "FL"
  3030. },
  3031. "H001100": {
  3032. "bioguide": "H001100",
  3033. "chamber": "House of Representatives",
  3034. "district": null,
  3035. "full_name": "Jeff Hurd",
  3036. "lis": null,
  3037. "party": "R",
  3038. "photo_url": "https://www.congress.gov/img/member/67742c5e0b34857ecc9090d1_200.jpg",
  3039. "served_from": "2025-01-03",
  3040. "served_to": null,
  3041. "source": "congress.gov/v3",
  3042. "state": "CO"
  3043. },
  3044. "H001101": {
  3045. "bioguide": "H001101",
  3046. "chamber": "House of Representatives",
  3047. "district": null,
  3048. "full_name": "Pat Harrigan",
  3049. "lis": null,
  3050. "party": "R",
  3051. "photo_url": "https://www.congress.gov/img/member/67742ca40b34857ecc9090d7_200.jpg",
  3052. "served_from": "2025-01-03",
  3053. "served_to": null,
  3054. "source": "congress.gov/v3",
  3055. "state": "NC"
  3056. },
  3057. "H001102": {
  3058. "bioguide": "H001102",
  3059. "chamber": "House of Representatives",
  3060. "district": null,
  3061. "full_name": "Mark Harris",
  3062. "lis": null,
  3063. "party": "R",
  3064. "photo_url": "https://www.congress.gov/img/member/67742d1b0b34857ecc9090dd_200.jpg",
  3065. "served_from": "2025-01-03",
  3066. "served_to": null,
  3067. "source": "congress.gov/v3",
  3068. "state": "NC"
  3069. },
  3070. "H001103": {
  3071. "bioguide": "H001103",
  3072. "chamber": "House of Representatives",
  3073. "district": null,
  3074. "full_name": "Pablo Jose Hern\u00e1ndez",
  3075. "lis": null,
  3076. "party": "D",
  3077. "photo_url": "https://www.congress.gov/img/member/67742d980b34857ecc9090e3_200.jpg",
  3078. "served_from": "2025-01-03",
  3079. "served_to": null,
  3080. "source": "congress.gov/v3",
  3081. "state": "PR"
  3082. },
  3083. "H001104": {
  3084. "bioguide": "H001104",
  3085. "chamber": "Senate",
  3086. "district": null,
  3087. "full_name": "Jon Husted",
  3088. "lis": "S438",
  3089. "party": "R",
  3090. "photo_url": "https://www.congress.gov/img/member/67f0316b1b05a5a598f7fdf3_200.jpg",
  3091. "served_from": "2025-01-03",
  3092. "served_to": null,
  3093. "source": "congress.gov/v3",
  3094. "state": "OH"
  3095. },
  3096. "I000056": {
  3097. "bioguide": "I000056",
  3098. "chamber": "House of Representatives",
  3099. "district": null,
  3100. "full_name": "Darrell Issa",
  3101. "lis": null,
  3102. "party": "R",
  3103. "photo_url": "https://www.congress.gov/img/member/i000056_200.jpg",
  3104. "served_from": "2001-01-03",
  3105. "served_to": null,
  3106. "source": "congress.gov/v3",
  3107. "state": "CA"
  3108. },
  3109. "I000058": {
  3110. "bioguide": "I000058",
  3111. "chamber": "House of Representatives",
  3112. "district": null,
  3113. "full_name": "Glenn Ivey",
  3114. "lis": null,
  3115. "party": "D",
  3116. "photo_url": "https://www.congress.gov/img/member/i000058_200.jpg",
  3117. "served_from": "2023-01-03",
  3118. "served_to": null,
  3119. "source": "congress.gov/v3",
  3120. "state": "MD"
  3121. },
  3122. "J000288": {
  3123. "bioguide": "J000288",
  3124. "chamber": "House of Representatives",
  3125. "district": null,
  3126. "full_name": "Henry C. \"Hank\" Johnson",
  3127. "lis": null,
  3128. "party": "D",
  3129. "photo_url": "https://www.congress.gov/img/member/j000288_200.jpg",
  3130. "served_from": "2007-01-03",
  3131. "served_to": null,
  3132. "source": "congress.gov/v3",
  3133. "state": "GA"
  3134. },
  3135. "J000289": {
  3136. "bioguide": "J000289",
  3137. "chamber": "House of Representatives",
  3138. "district": null,
  3139. "full_name": "Jim Jordan",
  3140. "lis": null,
  3141. "party": "R",
  3142. "photo_url": "https://www.congress.gov/img/member/j000289_200.jpg",
  3143. "served_from": "2007-01-03",
  3144. "served_to": null,
  3145. "source": "congress.gov/v3",
  3146. "state": "OH"
  3147. },
  3148. "J000293": {
  3149. "bioguide": "J000293",
  3150. "chamber": "Senate",
  3151. "district": null,
  3152. "full_name": "Ron Johnson",
  3153. "lis": "S345",
  3154. "party": "R",
  3155. "photo_url": "https://www.congress.gov/img/member/j000293_200.jpg",
  3156. "served_from": "2011-01-03",
  3157. "served_to": null,
  3158. "source": "congress.gov/v3",
  3159. "state": "WI"
  3160. },
  3161. "J000294": {
  3162. "bioguide": "J000294",
  3163. "chamber": "House of Representatives",
  3164. "district": null,
  3165. "full_name": "Hakeem S. Jeffries",
  3166. "lis": null,
  3167. "party": "D",
  3168. "photo_url": "https://www.congress.gov/img/member/j000294_200.jpg",
  3169. "served_from": "2013-01-03",
  3170. "served_to": null,
  3171. "source": "congress.gov/v3",
  3172. "state": "NY"
  3173. },
  3174. "J000295": {
  3175. "bioguide": "J000295",
  3176. "chamber": "House of Representatives",
  3177. "district": null,
  3178. "full_name": "David P. Joyce",
  3179. "lis": null,
  3180. "party": "R",
  3181. "photo_url": "https://www.congress.gov/img/member/j000295_200.jpg",
  3182. "served_from": "2013-01-03",
  3183. "served_to": null,
  3184. "source": "congress.gov/v3",
  3185. "state": "OH"
  3186. },
  3187. "J000298": {
  3188. "bioguide": "J000298",
  3189. "chamber": "House of Representatives",
  3190. "district": null,
  3191. "full_name": "Pramila Jayapal",
  3192. "lis": null,
  3193. "party": "D",
  3194. "photo_url": "https://www.congress.gov/img/member/116_rp_wa_7_jayapal_pramila_200.jpg",
  3195. "served_from": "2017-01-03",
  3196. "served_to": null,
  3197. "source": "congress.gov/v3",
  3198. "state": "WA"
  3199. },
  3200. "J000299": {
  3201. "bioguide": "J000299",
  3202. "chamber": "House of Representatives",
  3203. "district": null,
  3204. "full_name": "Mike Johnson",
  3205. "lis": null,
  3206. "party": "R",
  3207. "photo_url": "https://www.congress.gov/img/member/67ffcb2af22eaf56065817c4_200.jpg",
  3208. "served_from": "2017-01-03",
  3209. "served_to": null,
  3210. "source": "congress.gov/v3",
  3211. "state": "LA"
  3212. },
  3213. "J000301": {
  3214. "bioguide": "J000301",
  3215. "chamber": "House of Representatives",
  3216. "district": null,
  3217. "full_name": "Dusty Johnson",
  3218. "lis": null,
  3219. "party": "R",
  3220. "photo_url": "https://www.congress.gov/img/member/j000301_200.jpg",
  3221. "served_from": "2019-01-03",
  3222. "served_to": null,
  3223. "source": "congress.gov/v3",
  3224. "state": "SD"
  3225. },
  3226. "J000302": {
  3227. "bioguide": "J000302",
  3228. "chamber": "House of Representatives",
  3229. "district": null,
  3230. "full_name": "John Joyce",
  3231. "lis": null,
  3232. "party": "R",
  3233. "photo_url": "https://www.congress.gov/img/member/j000302_200.jpg",
  3234. "served_from": "2019-01-03",
  3235. "served_to": null,
  3236. "source": "congress.gov/v3",
  3237. "state": "PA"
  3238. },
  3239. "J000304": {
  3240. "bioguide": "J000304",
  3241. "chamber": "House of Representatives",
  3242. "district": null,
  3243. "full_name": "Ronny Jackson",
  3244. "lis": null,
  3245. "party": "R",
  3246. "photo_url": "https://www.congress.gov/img/member/j000304_200.jpg",
  3247. "served_from": "2021-01-03",
  3248. "served_to": null,
  3249. "source": "congress.gov/v3",
  3250. "state": "TX"
  3251. },
  3252. "J000305": {
  3253. "bioguide": "J000305",
  3254. "chamber": "House of Representatives",
  3255. "district": null,
  3256. "full_name": "Sara Jacobs",
  3257. "lis": null,
  3258. "party": "D",
  3259. "photo_url": "https://www.congress.gov/img/member/j000305_200.jpg",
  3260. "served_from": "2021-01-03",
  3261. "served_to": null,
  3262. "source": "congress.gov/v3",
  3263. "state": "CA"
  3264. },
  3265. "J000307": {
  3266. "bioguide": "J000307",
  3267. "chamber": "House of Representatives",
  3268. "district": null,
  3269. "full_name": "John James",
  3270. "lis": null,
  3271. "party": "R",
  3272. "photo_url": "https://www.congress.gov/img/member/j000307_200.jpg",
  3273. "served_from": "2023-01-03",
  3274. "served_to": null,
  3275. "source": "congress.gov/v3",
  3276. "state": "MI"
  3277. },
  3278. "J000309": {
  3279. "bioguide": "J000309",
  3280. "chamber": "House of Representatives",
  3281. "district": null,
  3282. "full_name": "Jonathan L. Jackson",
  3283. "lis": null,
  3284. "party": "D",
  3285. "photo_url": "https://www.congress.gov/img/member/j000309_200.jpg",
  3286. "served_from": "2023-01-03",
  3287. "served_to": null,
  3288. "source": "congress.gov/v3",
  3289. "state": "IL"
  3290. },
  3291. "J000310": {
  3292. "bioguide": "J000310",
  3293. "chamber": "House of Representatives",
  3294. "district": null,
  3295. "full_name": "Julie Johnson",
  3296. "lis": null,
  3297. "party": "D",
  3298. "photo_url": "https://www.congress.gov/img/member/67742df60b34857ecc9090e9_200.jpg",
  3299. "served_from": "2025-01-03",
  3300. "served_to": null,
  3301. "source": "congress.gov/v3",
  3302. "state": "TX"
  3303. },
  3304. "J000311": {
  3305. "bioguide": "J000311",
  3306. "chamber": "House of Representatives",
  3307. "district": null,
  3308. "full_name": "Brian Jack",
  3309. "lis": null,
  3310. "party": "R",
  3311. "photo_url": "https://www.congress.gov/img/member/67742e330b34857ecc9090ef_200.jpg",
  3312. "served_from": "2025-01-03",
  3313. "served_to": null,
  3314. "source": "congress.gov/v3",
  3315. "state": "GA"
  3316. },
  3317. "J000312": {
  3318. "bioguide": "J000312",
  3319. "chamber": "Senate",
  3320. "district": null,
  3321. "full_name": "James C. Justice",
  3322. "lis": "S437",
  3323. "party": "R",
  3324. "photo_url": "https://www.congress.gov/img/member/67c86b5e6159152e59828b1a_200.jpg",
  3325. "served_from": "2025-01-03",
  3326. "served_to": null,
  3327. "source": "congress.gov/v3",
  3328. "state": "WV"
  3329. },
  3330. "K000009": {
  3331. "bioguide": "K000009",
  3332. "chamber": "House of Representatives",
  3333. "district": null,
  3334. "full_name": "Marcy Kaptur",
  3335. "lis": null,
  3336. "party": "D",
  3337. "photo_url": "https://www.congress.gov/img/member/k000009_200.jpg",
  3338. "served_from": "1983-01-03",
  3339. "served_to": null,
  3340. "source": "congress.gov/v3",
  3341. "state": "OH"
  3342. },
  3343. "K000367": {
  3344. "bioguide": "K000367",
  3345. "chamber": "Senate",
  3346. "district": null,
  3347. "full_name": "Amy Klobuchar",
  3348. "lis": "S311",
  3349. "party": "D",
  3350. "photo_url": "https://www.congress.gov/img/member/k000367_200.jpg",
  3351. "served_from": "2007-01-03",
  3352. "served_to": null,
  3353. "source": "congress.gov/v3",
  3354. "state": "MN"
  3355. },
  3356. "K000375": {
  3357. "bioguide": "K000375",
  3358. "chamber": "House of Representatives",
  3359. "district": null,
  3360. "full_name": "William R. Keating",
  3361. "lis": null,
  3362. "party": "D",
  3363. "photo_url": "https://www.congress.gov/img/member/k000375_200.jpg",
  3364. "served_from": "2011-01-03",
  3365. "served_to": null,
  3366. "source": "congress.gov/v3",
  3367. "state": "MA"
  3368. },
  3369. "K000376": {
  3370. "bioguide": "K000376",
  3371. "chamber": "House of Representatives",
  3372. "district": null,
  3373. "full_name": "Mike Kelly",
  3374. "lis": null,
  3375. "party": "R",
  3376. "photo_url": "https://www.congress.gov/img/member/k000376_200.jpg",
  3377. "served_from": "2011-01-03",
  3378. "served_to": null,
  3379. "source": "congress.gov/v3",
  3380. "state": "PA"
  3381. },
  3382. "K000377": {
  3383. "bioguide": "K000377",
  3384. "chamber": "Senate",
  3385. "district": null,
  3386. "full_name": "Mark Kelly",
  3387. "lis": "S406",
  3388. "party": "D",
  3389. "photo_url": "https://www.congress.gov/img/member/k000377_200.jpg",
  3390. "served_from": "2020-01-03",
  3391. "served_to": null,
  3392. "source": "congress.gov/v3",
  3393. "state": "AZ"
  3394. },
  3395. "K000383": {
  3396. "bioguide": "K000383",
  3397. "chamber": "Senate",
  3398. "district": null,
  3399. "full_name": "Angus S., Jr. King",
  3400. "lis": "S363",
  3401. "party": "I",
  3402. "photo_url": "https://www.congress.gov/img/member/k000383_200.jpg",
  3403. "served_from": "2013-01-03",
  3404. "served_to": null,
  3405. "source": "congress.gov/v3",
  3406. "state": "ME"
  3407. },
  3408. "K000384": {
  3409. "bioguide": "K000384",
  3410. "chamber": "Senate",
  3411. "district": null,
  3412. "full_name": "Tim Kaine",
  3413. "lis": "S362",
  3414. "party": "D",
  3415. "photo_url": "https://www.congress.gov/img/member/k000384_200.jpg",
  3416. "served_from": "2013-01-03",
  3417. "served_to": null,
  3418. "source": "congress.gov/v3",
  3419. "state": "VA"
  3420. },
  3421. "K000385": {
  3422. "bioguide": "K000385",
  3423. "chamber": "House of Representatives",
  3424. "district": null,
  3425. "full_name": "Robin L. Kelly",
  3426. "lis": null,
  3427. "party": "D",
  3428. "photo_url": "https://www.congress.gov/img/member/116_rp_il_2_kelly_robin_200.jpg",
  3429. "served_from": "2013-01-03",
  3430. "served_to": null,
  3431. "source": "congress.gov/v3",
  3432. "state": "IL"
  3433. },
  3434. "K000388": {
  3435. "bioguide": "K000388",
  3436. "chamber": "House of Representatives",
  3437. "district": null,
  3438. "full_name": "Trent Kelly",
  3439. "lis": null,
  3440. "party": "R",
  3441. "photo_url": "https://www.congress.gov/img/member/116_rp_ms_1_kelly_trent_200.jpg",
  3442. "served_from": "2015-01-03",
  3443. "served_to": null,
  3444. "source": "congress.gov/v3",
  3445. "state": "MS"
  3446. },
  3447. "K000389": {
  3448. "bioguide": "K000389",
  3449. "chamber": "House of Representatives",
  3450. "district": null,
  3451. "full_name": "Ro Khanna",
  3452. "lis": null,
  3453. "party": "D",
  3454. "photo_url": "https://www.congress.gov/img/member/k000389_200.jpg",
  3455. "served_from": "2017-01-03",
  3456. "served_to": null,
  3457. "source": "congress.gov/v3",
  3458. "state": "CA"
  3459. },
  3460. "K000391": {
  3461. "bioguide": "K000391",
  3462. "chamber": "House of Representatives",
  3463. "district": null,
  3464. "full_name": "Raja Krishnamoorthi",
  3465. "lis": null,
  3466. "party": "D",
  3467. "photo_url": "https://www.congress.gov/img/member/k000391_200.jpg",
  3468. "served_from": "2017-01-03",
  3469. "served_to": null,
  3470. "source": "congress.gov/v3",
  3471. "state": "IL"
  3472. },
  3473. "K000392": {
  3474. "bioguide": "K000392",
  3475. "chamber": "House of Representatives",
  3476. "district": null,
  3477. "full_name": "David Kustoff",
  3478. "lis": null,
  3479. "party": "R",
  3480. "photo_url": "https://www.congress.gov/img/member/116_rp_tn_8_kustoff_david_200.jpg",
  3481. "served_from": "2017-01-03",
  3482. "served_to": null,
  3483. "source": "congress.gov/v3",
  3484. "state": "TN"
  3485. },
  3486. "K000393": {
  3487. "bioguide": "K000393",
  3488. "chamber": "Senate",
  3489. "district": null,
  3490. "full_name": "John Kennedy",
  3491. "lis": "S389",
  3492. "party": "R",
  3493. "photo_url": "https://www.congress.gov/img/member/k000393_200.jpg",
  3494. "served_from": "2017-01-03",
  3495. "served_to": null,
  3496. "source": "congress.gov/v3",
  3497. "state": "LA"
  3498. },
  3499. "K000394": {
  3500. "bioguide": "K000394",
  3501. "chamber": "Senate",
  3502. "district": null,
  3503. "full_name": "Andy Kim",
  3504. "lis": "S426",
  3505. "party": "D",
  3506. "photo_url": "https://www.congress.gov/img/member/677d84cbfdb6cf36bbb649a1_200.jpg",
  3507. "served_from": "2019-01-03",
  3508. "served_to": null,
  3509. "source": "congress.gov/v3",
  3510. "state": "NJ"
  3511. },
  3512. "K000397": {
  3513. "bioguide": "K000397",
  3514. "chamber": "House of Representatives",
  3515. "district": null,
  3516. "full_name": "Young Kim",
  3517. "lis": null,
  3518. "party": "R",
  3519. "photo_url": "https://www.congress.gov/img/member/k000397_200.jpg",
  3520. "served_from": "2021-01-03",
  3521. "served_to": null,
  3522. "source": "congress.gov/v3",
  3523. "state": "CA"
  3524. },
  3525. "K000398": {
  3526. "bioguide": "K000398",
  3527. "chamber": "House of Representatives",
  3528. "district": null,
  3529. "full_name": "Thomas H. Kean",
  3530. "lis": null,
  3531. "party": "R",
  3532. "photo_url": "https://www.congress.gov/img/member/k000398_200.jpg",
  3533. "served_from": "2023-01-03",
  3534. "served_to": null,
  3535. "source": "congress.gov/v3",
  3536. "state": "NJ"
  3537. },
  3538. "K000399": {
  3539. "bioguide": "K000399",
  3540. "chamber": "House of Representatives",
  3541. "district": null,
  3542. "full_name": "Jennifer A. Kiggans",
  3543. "lis": null,
  3544. "party": "R",
  3545. "photo_url": "https://www.congress.gov/img/member/66b0ce45b0288a917d98f619_200.jpg",
  3546. "served_from": "2023-01-03",
  3547. "served_to": null,
  3548. "source": "congress.gov/v3",
  3549. "state": "VA"
  3550. },
  3551. "K000400": {
  3552. "bioguide": "K000400",
  3553. "chamber": "House of Representatives",
  3554. "district": null,
  3555. "full_name": "Sydney Kamlager-Dove",
  3556. "lis": null,
  3557. "party": "D",
  3558. "photo_url": "https://www.congress.gov/img/member/k000400_200.jpg",
  3559. "served_from": "2023-01-03",
  3560. "served_to": null,
  3561. "source": "congress.gov/v3",
  3562. "state": "CA"
  3563. },
  3564. "K000401": {
  3565. "bioguide": "K000401",
  3566. "chamber": "House of Representatives",
  3567. "district": null,
  3568. "full_name": "Kevin Kiley",
  3569. "lis": null,
  3570. "party": "I",
  3571. "photo_url": "https://www.congress.gov/img/member/k000401_200.jpg",
  3572. "served_from": "2023-01-03",
  3573. "served_to": null,
  3574. "source": "congress.gov/v3",
  3575. "state": "CA"
  3576. },
  3577. "K000402": {
  3578. "bioguide": "K000402",
  3579. "chamber": "House of Representatives",
  3580. "district": null,
  3581. "full_name": "Timothy M. Kennedy",
  3582. "lis": null,
  3583. "party": "D",
  3584. "photo_url": "https://www.congress.gov/img/member/668e9306658443009a697c8c_200.jpg",
  3585. "served_from": "2024-01-03",
  3586. "served_to": null,
  3587. "source": "congress.gov/v3",
  3588. "state": "NY"
  3589. },
  3590. "K000403": {
  3591. "bioguide": "K000403",
  3592. "chamber": "House of Representatives",
  3593. "district": null,
  3594. "full_name": "Mike Kennedy",
  3595. "lis": null,
  3596. "party": "R",
  3597. "photo_url": "https://www.congress.gov/img/member/67742e7c0b34857ecc9090f5_200.jpg",
  3598. "served_from": "2025-01-03",
  3599. "served_to": null,
  3600. "source": "congress.gov/v3",
  3601. "state": "UT"
  3602. },
  3603. "K000404": {
  3604. "bioguide": "K000404",
  3605. "chamber": "House of Representatives",
  3606. "district": null,
  3607. "full_name": "Kimberlyn King-Hinds",
  3608. "lis": null,
  3609. "party": "R",
  3610. "photo_url": "https://www.congress.gov/img/member/67742f0a0b34857ecc9090fb_200.jpg",
  3611. "served_from": "2025-01-03",
  3612. "served_to": null,
  3613. "source": "congress.gov/v3",
  3614. "state": "MP"
  3615. },
  3616. "K000405": {
  3617. "bioguide": "K000405",
  3618. "chamber": "House of Representatives",
  3619. "district": null,
  3620. "full_name": "Brad Knott",
  3621. "lis": null,
  3622. "party": "R",
  3623. "photo_url": "https://www.congress.gov/img/member/67742fc60b34857ecc909101_200.jpg",
  3624. "served_from": "2025-01-03",
  3625. "served_to": null,
  3626. "source": "congress.gov/v3",
  3627. "state": "NC"
  3628. },
  3629. "L000273": {
  3630. "bioguide": "L000273",
  3631. "chamber": "House of Representatives",
  3632. "district": null,
  3633. "full_name": "Teresa Leger Fernandez",
  3634. "lis": null,
  3635. "party": "D",
  3636. "photo_url": "https://www.congress.gov/img/member/l000273_200.jpg",
  3637. "served_from": "2021-01-03",
  3638. "served_to": null,
  3639. "source": "congress.gov/v3",
  3640. "state": "NM"
  3641. },
  3642. "L000397": {
  3643. "bioguide": "L000397",
  3644. "chamber": "House of Representatives",
  3645. "district": null,
  3646. "full_name": "Zoe Lofgren",
  3647. "lis": null,
  3648. "party": "D",
  3649. "photo_url": "https://www.congress.gov/img/member/671024d7ec807bca66057fcb_200.jpg",
  3650. "served_from": "1995-01-03",
  3651. "served_to": null,
  3652. "source": "congress.gov/v3",
  3653. "state": "CA"
  3654. },
  3655. "L000491": {
  3656. "bioguide": "L000491",
  3657. "chamber": "House of Representatives",
  3658. "district": null,
  3659. "full_name": "Frank D. Lucas",
  3660. "lis": null,
  3661. "party": "R",
  3662. "photo_url": "https://www.congress.gov/img/member/116_rp_ok_3_lucas_frank_200.jpg",
  3663. "served_from": "1993-01-03",
  3664. "served_to": null,
  3665. "source": "congress.gov/v3",
  3666. "state": "OK"
  3667. },
  3668. "L000557": {
  3669. "bioguide": "L000557",
  3670. "chamber": "House of Representatives",
  3671. "district": null,
  3672. "full_name": "John B. Larson",
  3673. "lis": null,
  3674. "party": "D",
  3675. "photo_url": "https://www.congress.gov/img/member/l000557_200.jpg",
  3676. "served_from": "1999-01-03",
  3677. "served_to": null,
  3678. "source": "congress.gov/v3",
  3679. "state": "CT"
  3680. },
  3681. "L000560": {
  3682. "bioguide": "L000560",
  3683. "chamber": "House of Representatives",
  3684. "district": null,
  3685. "full_name": "Rick Larsen",
  3686. "lis": null,
  3687. "party": "D",
  3688. "photo_url": "https://www.congress.gov/img/member/116_rp_wa_2_larsen_rick_200.jpg",
  3689. "served_from": "2001-01-03",
  3690. "served_to": null,
  3691. "source": "congress.gov/v3",
  3692. "state": "WA"
  3693. },
  3694. "L000562": {
  3695. "bioguide": "L000562",
  3696. "chamber": "House of Representatives",
  3697. "district": null,
  3698. "full_name": "Stephen F. Lynch",
  3699. "lis": null,
  3700. "party": "D",
  3701. "photo_url": "https://www.congress.gov/img/member/l000562_200.jpg",
  3702. "served_from": "2001-01-03",
  3703. "served_to": null,
  3704. "source": "congress.gov/v3",
  3705. "state": "MA"
  3706. },
  3707. "L000566": {
  3708. "bioguide": "L000566",
  3709. "chamber": "House of Representatives",
  3710. "district": null,
  3711. "full_name": "Robert E. Latta",
  3712. "lis": null,
  3713. "party": "R",
  3714. "photo_url": "https://www.congress.gov/img/member/6984c938b1dfe04d989a1e21_200.jpg",
  3715. "served_from": "2007-01-03",
  3716. "served_to": null,
  3717. "source": "congress.gov/v3",
  3718. "state": "OH"
  3719. },
  3720. "L000570": {
  3721. "bioguide": "L000570",
  3722. "chamber": "Senate",
  3723. "district": null,
  3724. "full_name": "Ben Ray Luj\u00e1n",
  3725. "lis": "S409",
  3726. "party": "D",
  3727. "photo_url": "https://www.congress.gov/img/member/l000570_200.jpg",
  3728. "served_from": "2009-01-03",
  3729. "served_to": null,
  3730. "source": "congress.gov/v3",
  3731. "state": "NM"
  3732. },
  3733. "L000571": {
  3734. "bioguide": "L000571",
  3735. "chamber": "Senate",
  3736. "district": null,
  3737. "full_name": "Cynthia M. Lummis",
  3738. "lis": "S410",
  3739. "party": "R",
  3740. "photo_url": "https://www.congress.gov/img/member/l000571_200.jpg",
  3741. "served_from": "2009-01-03",
  3742. "served_to": null,
  3743. "source": "congress.gov/v3",
  3744. "state": "WY"
  3745. },
  3746. "L000575": {
  3747. "bioguide": "L000575",
  3748. "chamber": "Senate",
  3749. "district": null,
  3750. "full_name": "James Lankford",
  3751. "lis": "S378",
  3752. "party": "R",
  3753. "photo_url": "https://www.congress.gov/img/member/l000575_200.jpg",
  3754. "served_from": "2011-01-03",
  3755. "served_to": null,
  3756. "source": "congress.gov/v3",
  3757. "state": "OK"
  3758. },
  3759. "L000577": {
  3760. "bioguide": "L000577",
  3761. "chamber": "Senate",
  3762. "district": null,
  3763. "full_name": "Mike Lee",
  3764. "lis": "S346",
  3765. "party": "R",
  3766. "photo_url": "https://www.congress.gov/img/member/l000577_200.jpg",
  3767. "served_from": "2011-01-03",
  3768. "served_to": null,
  3769. "source": "congress.gov/v3",
  3770. "state": "UT"
  3771. },
  3772. "L000578": {
  3773. "bioguide": "L000578",
  3774. "chamber": "House of Representatives",
  3775. "district": null,
  3776. "full_name": "Doug LaMalfa",
  3777. "lis": null,
  3778. "party": "R",
  3779. "photo_url": "https://www.congress.gov/img/member/l000578_200.jpg",
  3780. "served_from": "2013-01-03",
  3781. "served_to": "2026-01-03",
  3782. "source": "congress.gov/v3",
  3783. "state": "CA"
  3784. },
  3785. "L000582": {
  3786. "bioguide": "L000582",
  3787. "chamber": "House of Representatives",
  3788. "district": null,
  3789. "full_name": "Ted Lieu",
  3790. "lis": null,
  3791. "party": "D",
  3792. "photo_url": "https://www.congress.gov/img/member/l000582_200.jpg",
  3793. "served_from": "2015-01-03",
  3794. "served_to": null,
  3795. "source": "congress.gov/v3",
  3796. "state": "CA"
  3797. },
  3798. "L000583": {
  3799. "bioguide": "L000583",
  3800. "chamber": "House of Representatives",
  3801. "district": null,
  3802. "full_name": "Barry Loudermilk",
  3803. "lis": null,
  3804. "party": "R",
  3805. "photo_url": "https://www.congress.gov/img/member/115_rp_ga_11_loudermilk_barry_200.jpg",
  3806. "served_from": "2015-01-03",
  3807. "served_to": null,
  3808. "source": "congress.gov/v3",
  3809. "state": "GA"
  3810. },
  3811. "L000585": {
  3812. "bioguide": "L000585",
  3813. "chamber": "House of Representatives",
  3814. "district": null,
  3815. "full_name": "Darin LaHood",
  3816. "lis": null,
  3817. "party": "R",
  3818. "photo_url": "https://www.congress.gov/img/member/115_rp_il_18_lahood_darin_200.jpg",
  3819. "served_from": "2015-01-03",
  3820. "served_to": null,
  3821. "source": "congress.gov/v3",
  3822. "state": "IL"
  3823. },
  3824. "L000590": {
  3825. "bioguide": "L000590",
  3826. "chamber": "House of Representatives",
  3827. "district": null,
  3828. "full_name": "Susie Lee",
  3829. "lis": null,
  3830. "party": "D",
  3831. "photo_url": "https://www.congress.gov/img/member/l000590_200.jpg",
  3832. "served_from": "2019-01-03",
  3833. "served_to": null,
  3834. "source": "congress.gov/v3",
  3835. "state": "NV"
  3836. },
  3837. "L000593": {
  3838. "bioguide": "L000593",
  3839. "chamber": "House of Representatives",
  3840. "district": null,
  3841. "full_name": "Mike Levin",
  3842. "lis": null,
  3843. "party": "D",
  3844. "photo_url": "https://www.congress.gov/img/member/l000593_200.jpg",
  3845. "served_from": "2019-01-03",
  3846. "served_to": null,
  3847. "source": "congress.gov/v3",
  3848. "state": "CA"
  3849. },
  3850. "L000595": {
  3851. "bioguide": "L000595",
  3852. "chamber": "House of Representatives",
  3853. "district": null,
  3854. "full_name": "Julia Letlow",
  3855. "lis": null,
  3856. "party": "R",
  3857. "photo_url": "https://www.congress.gov/img/member/l000595_200.jpg",
  3858. "served_from": "2021-01-03",
  3859. "served_to": null,
  3860. "source": "congress.gov/v3",
  3861. "state": "LA"
  3862. },
  3863. "L000596": {
  3864. "bioguide": "L000596",
  3865. "chamber": "House of Representatives",
  3866. "district": null,
  3867. "full_name": "Anna Paulina Luna",
  3868. "lis": null,
  3869. "party": "R",
  3870. "photo_url": "https://www.congress.gov/img/member/l000596_200.jpg",
  3871. "served_from": "2023-01-03",
  3872. "served_to": null,
  3873. "source": "congress.gov/v3",
  3874. "state": "FL"
  3875. },
  3876. "L000597": {
  3877. "bioguide": "L000597",
  3878. "chamber": "House of Representatives",
  3879. "district": null,
  3880. "full_name": "Laurel M. Lee",
  3881. "lis": null,
  3882. "party": "R",
  3883. "photo_url": "https://www.congress.gov/img/member/l000597_200.jpg",
  3884. "served_from": "2023-01-03",
  3885. "served_to": null,
  3886. "source": "congress.gov/v3",
  3887. "state": "FL"
  3888. },
  3889. "L000598": {
  3890. "bioguide": "L000598",
  3891. "chamber": "House of Representatives",
  3892. "district": null,
  3893. "full_name": "Nick LaLota",
  3894. "lis": null,
  3895. "party": "R",
  3896. "photo_url": "https://www.congress.gov/img/member/l000598_200.jpg",
  3897. "served_from": "2023-01-03",
  3898. "served_to": null,
  3899. "source": "congress.gov/v3",
  3900. "state": "NY"
  3901. },
  3902. "L000599": {
  3903. "bioguide": "L000599",
  3904. "chamber": "House of Representatives",
  3905. "district": null,
  3906. "full_name": "Michael Lawler",
  3907. "lis": null,
  3908. "party": "R",
  3909. "photo_url": "https://www.congress.gov/img/member/l000599_200.jpg",
  3910. "served_from": "2023-01-03",
  3911. "served_to": null,
  3912. "source": "congress.gov/v3",
  3913. "state": "NY"
  3914. },
  3915. "L000600": {
  3916. "bioguide": "L000600",
  3917. "chamber": "House of Representatives",
  3918. "district": null,
  3919. "full_name": "Nicholas A. Langworthy",
  3920. "lis": null,
  3921. "party": "R",
  3922. "photo_url": "https://www.congress.gov/img/member/680901e76c2e6631263de716_200.jpg",
  3923. "served_from": "2023-01-03",
  3924. "served_to": null,
  3925. "source": "congress.gov/v3",
  3926. "state": "NY"
  3927. },
  3928. "L000601": {
  3929. "bioguide": "L000601",
  3930. "chamber": "House of Representatives",
  3931. "district": null,
  3932. "full_name": "Greg Landsman",
  3933. "lis": null,
  3934. "party": "D",
  3935. "photo_url": "https://www.congress.gov/img/member/l000601_200.jpg",
  3936. "served_from": "2023-01-03",
  3937. "served_to": null,
  3938. "source": "congress.gov/v3",
  3939. "state": "OH"
  3940. },
  3941. "L000602": {
  3942. "bioguide": "L000602",
  3943. "chamber": "House of Representatives",
  3944. "district": null,
  3945. "full_name": "Summer L. Lee",
  3946. "lis": null,
  3947. "party": "D",
  3948. "photo_url": "https://www.congress.gov/img/member/l000602_200.jpg",
  3949. "served_from": "2023-01-03",
  3950. "served_to": null,
  3951. "source": "congress.gov/v3",
  3952. "state": "PA"
  3953. },
  3954. "L000603": {
  3955. "bioguide": "L000603",
  3956. "chamber": "House of Representatives",
  3957. "district": null,
  3958. "full_name": "Morgan Luttrell",
  3959. "lis": null,
  3960. "party": "R",
  3961. "photo_url": "https://www.congress.gov/img/member/l000603_200.jpg",
  3962. "served_from": "2023-01-03",
  3963. "served_to": null,
  3964. "source": "congress.gov/v3",
  3965. "state": "TX"
  3966. },
  3967. "L000606": {
  3968. "bioguide": "L000606",
  3969. "chamber": "House of Representatives",
  3970. "district": null,
  3971. "full_name": "George Latimer",
  3972. "lis": null,
  3973. "party": "D",
  3974. "photo_url": "https://www.congress.gov/img/member/6774301b0b34857ecc909107_200.jpg",
  3975. "served_from": "2025-01-03",
  3976. "served_to": null,
  3977. "source": "congress.gov/v3",
  3978. "state": "NY"
  3979. },
  3980. "L000607": {
  3981. "bioguide": "L000607",
  3982. "chamber": "House of Representatives",
  3983. "district": null,
  3984. "full_name": "Sam T. Liccardo",
  3985. "lis": null,
  3986. "party": "D",
  3987. "photo_url": "https://www.congress.gov/img/member/6774305d0b34857ecc90910d_200.jpg",
  3988. "served_from": "2025-01-03",
  3989. "served_to": null,
  3990. "source": "congress.gov/v3",
  3991. "state": "CA"
  3992. },
  3993. "M000133": {
  3994. "bioguide": "M000133",
  3995. "chamber": "Senate",
  3996. "district": null,
  3997. "full_name": "Edward J. Markey",
  3998. "lis": "S369",
  3999. "party": "D",
  4000. "photo_url": "https://www.congress.gov/img/member/m000133_200.jpg",
  4001. "served_from": "1977-01-03",
  4002. "served_to": null,
  4003. "source": "congress.gov/v3",
  4004. "state": "MA"
  4005. },
  4006. "M000194": {
  4007. "bioguide": "M000194",
  4008. "chamber": "House of Representatives",
  4009. "district": null,
  4010. "full_name": "Nancy Mace",
  4011. "lis": null,
  4012. "party": "R",
  4013. "photo_url": "https://www.congress.gov/img/member/m000194_200.jpg",
  4014. "served_from": "2021-01-03",
  4015. "served_to": null,
  4016. "source": "congress.gov/v3",
  4017. "state": "SC"
  4018. },
  4019. "M000312": {
  4020. "bioguide": "M000312",
  4021. "chamber": "House of Representatives",
  4022. "district": null,
  4023. "full_name": "James P. McGovern",
  4024. "lis": null,
  4025. "party": "D",
  4026. "photo_url": "https://www.congress.gov/img/member/117_rp_ma_2_mcgovern_james_200.jpg",
  4027. "served_from": "1997-01-03",
  4028. "served_to": null,
  4029. "source": "congress.gov/v3",
  4030. "state": "MA"
  4031. },
  4032. "M000317": {
  4033. "bioguide": "M000317",
  4034. "chamber": "House of Representatives",
  4035. "district": null,
  4036. "full_name": "Nicole Malliotakis",
  4037. "lis": null,
  4038. "party": "R",
  4039. "photo_url": "https://www.congress.gov/img/member/m000317_200.jpg",
  4040. "served_from": "2021-01-03",
  4041. "served_to": null,
  4042. "source": "congress.gov/v3",
  4043. "state": "NY"
  4044. },
  4045. "M000355": {
  4046. "bioguide": "M000355",
  4047. "chamber": "Senate",
  4048. "district": null,
  4049. "full_name": "Mitch McConnell",
  4050. "lis": "S174",
  4051. "party": "R",
  4052. "photo_url": "https://www.congress.gov/img/member/m000355_200.jpg",
  4053. "served_from": "1985-01-03",
  4054. "served_to": null,
  4055. "source": "congress.gov/v3",
  4056. "state": "KY"
  4057. },
  4058. "M000687": {
  4059. "bioguide": "M000687",
  4060. "chamber": "House of Representatives",
  4061. "district": null,
  4062. "full_name": "Kweisi Mfume",
  4063. "lis": null,
  4064. "party": "D",
  4065. "photo_url": "https://www.congress.gov/img/member/m000687_200.jpg",
  4066. "served_from": "1987-01-03",
  4067. "served_to": null,
  4068. "source": "congress.gov/v3",
  4069. "state": "MD"
  4070. },
  4071. "M000871": {
  4072. "bioguide": "M000871",
  4073. "chamber": "House of Representatives",
  4074. "district": null,
  4075. "full_name": "Tracey Mann",
  4076. "lis": null,
  4077. "party": "R",
  4078. "photo_url": "https://www.congress.gov/img/member/m000871_200.jpg",
  4079. "served_from": "2021-01-03",
  4080. "served_to": null,
  4081. "source": "congress.gov/v3",
  4082. "state": "KS"
  4083. },
  4084. "M000934": {
  4085. "bioguide": "M000934",
  4086. "chamber": "Senate",
  4087. "district": null,
  4088. "full_name": "Jerry Moran",
  4089. "lis": "S347",
  4090. "party": "R",
  4091. "photo_url": "https://www.congress.gov/img/member/m000934_200.jpg",
  4092. "served_from": "1997-01-03",
  4093. "served_to": null,
  4094. "source": "congress.gov/v3",
  4095. "state": "KS"
  4096. },
  4097. "M001111": {
  4098. "bioguide": "M001111",
  4099. "chamber": "Senate",
  4100. "district": null,
  4101. "full_name": "Patty Murray",
  4102. "lis": "S229",
  4103. "party": "D",
  4104. "photo_url": "https://www.congress.gov/img/member/1b52ad6d215684d847d1c2bf28b9b262_200.jpg",
  4105. "served_from": "1993-01-03",
  4106. "served_to": null,
  4107. "source": "congress.gov/v3",
  4108. "state": "WA"
  4109. },
  4110. "M001136": {
  4111. "bioguide": "M001136",
  4112. "chamber": "House of Representatives",
  4113. "district": null,
  4114. "full_name": "Lisa C. McClain",
  4115. "lis": null,
  4116. "party": "R",
  4117. "photo_url": "https://www.congress.gov/img/member/677836d41658e791a384976d_200.jpg",
  4118. "served_from": "2021-01-03",
  4119. "served_to": null,
  4120. "source": "congress.gov/v3",
  4121. "state": "MI"
  4122. },
  4123. "M001137": {
  4124. "bioguide": "M001137",
  4125. "chamber": "House of Representatives",
  4126. "district": null,
  4127. "full_name": "Gregory W. Meeks",
  4128. "lis": null,
  4129. "party": "D",
  4130. "photo_url": "https://www.congress.gov/img/member/m001137_200.jpg",
  4131. "served_from": "1997-01-03",
  4132. "served_to": null,
  4133. "source": "congress.gov/v3",
  4134. "state": "NY"
  4135. },
  4136. "M001143": {
  4137. "bioguide": "M001143",
  4138. "chamber": "House of Representatives",
  4139. "district": null,
  4140. "full_name": "Betty McCollum",
  4141. "lis": null,
  4142. "party": "D",
  4143. "photo_url": "https://www.congress.gov/img/member/116_rp_mn_4_mccollum_betty_200.jpg",
  4144. "served_from": "2001-01-03",
  4145. "served_to": null,
  4146. "source": "congress.gov/v3",
  4147. "state": "MN"
  4148. },
  4149. "M001153": {
  4150. "bioguide": "M001153",
  4151. "chamber": "Senate",
  4152. "district": null,
  4153. "full_name": "Lisa Murkowski",
  4154. "lis": "S288",
  4155. "party": "R",
  4156. "photo_url": "https://www.congress.gov/img/member/m001153_200.jpg",
  4157. "served_from": "2002-01-03",
  4158. "served_to": null,
  4159. "source": "congress.gov/v3",
  4160. "state": "AK"
  4161. },
  4162. "M001157": {
  4163. "bioguide": "M001157",
  4164. "chamber": "House of Representatives",
  4165. "district": null,
  4166. "full_name": "Michael T. McCaul",
  4167. "lis": null,
  4168. "party": "R",
  4169. "photo_url": "https://www.congress.gov/img/member/116_rp_tx_10_mccaul_michael_200.jpg",
  4170. "served_from": "2005-01-03",
  4171. "served_to": null,
  4172. "source": "congress.gov/v3",
  4173. "state": "TX"
  4174. },
  4175. "M001160": {
  4176. "bioguide": "M001160",
  4177. "chamber": "House of Representatives",
  4178. "district": null,
  4179. "full_name": "Gwen Moore",
  4180. "lis": null,
  4181. "party": "D",
  4182. "photo_url": "https://www.congress.gov/img/member/116_rp_wi_4_moore_gwen_200.jpg",
  4183. "served_from": "2005-01-03",
  4184. "served_to": null,
  4185. "source": "congress.gov/v3",
  4186. "state": "WI"
  4187. },
  4188. "M001163": {
  4189. "bioguide": "M001163",
  4190. "chamber": "House of Representatives",
  4191. "district": null,
  4192. "full_name": "Doris O. Matsui",
  4193. "lis": null,
  4194. "party": "D",
  4195. "photo_url": "https://www.congress.gov/img/member/m001163_200.jpg",
  4196. "served_from": "2005-01-03",
  4197. "served_to": null,
  4198. "source": "congress.gov/v3",
  4199. "state": "CA"
  4200. },
  4201. "M001169": {
  4202. "bioguide": "M001169",
  4203. "chamber": "Senate",
  4204. "district": null,
  4205. "full_name": "Christopher Murphy",
  4206. "lis": "S364",
  4207. "party": "D",
  4208. "photo_url": "https://www.congress.gov/img/member/m001169_200.jpg",
  4209. "served_from": "2007-01-03",
  4210. "served_to": null,
  4211. "source": "congress.gov/v3",
  4212. "state": "CT"
  4213. },
  4214. "M001176": {
  4215. "bioguide": "M001176",
  4216. "chamber": "Senate",
  4217. "district": null,
  4218. "full_name": "Jeff Merkley",
  4219. "lis": "S322",
  4220. "party": "D",
  4221. "photo_url": "https://www.congress.gov/img/member/m001176_200.jpg",
  4222. "served_from": "2009-01-03",
  4223. "served_to": null,
  4224. "source": "congress.gov/v3",
  4225. "state": "OR"
  4226. },
  4227. "M001177": {
  4228. "bioguide": "M001177",
  4229. "chamber": "House of Representatives",
  4230. "district": null,
  4231. "full_name": "Tom McClintock",
  4232. "lis": null,
  4233. "party": "R",
  4234. "photo_url": "https://www.congress.gov/img/member/m001177_200.jpg",
  4235. "served_from": "2009-01-03",
  4236. "served_to": null,
  4237. "source": "congress.gov/v3",
  4238. "state": "CA"
  4239. },
  4240. "M001184": {
  4241. "bioguide": "M001184",
  4242. "chamber": "House of Representatives",
  4243. "district": null,
  4244. "full_name": "Thomas Massie",
  4245. "lis": null,
  4246. "party": "R",
  4247. "photo_url": "https://www.congress.gov/img/member/m001184_200.jpg",
  4248. "served_from": "2012-01-03",
  4249. "served_to": null,
  4250. "source": "congress.gov/v3",
  4251. "state": "KY"
  4252. },
  4253. "M001188": {
  4254. "bioguide": "M001188",
  4255. "chamber": "House of Representatives",
  4256. "district": null,
  4257. "full_name": "Grace Meng",
  4258. "lis": null,
  4259. "party": "D",
  4260. "photo_url": "https://www.congress.gov/img/member/m001188_200.jpg",
  4261. "served_from": "2013-01-03",
  4262. "served_to": null,
  4263. "source": "congress.gov/v3",
  4264. "state": "NY"
  4265. },
  4266. "M001190": {
  4267. "bioguide": "M001190",
  4268. "chamber": "Senate",
  4269. "district": null,
  4270. "full_name": "Markwayne Mullin",
  4271. "lis": "S419",
  4272. "party": "R",
  4273. "photo_url": "https://www.congress.gov/img/member/m001190_200.jpg",
  4274. "served_from": "2013-01-03",
  4275. "served_to": "2026-01-03",
  4276. "source": "congress.gov/v3",
  4277. "state": "OK"
  4278. },
  4279. "M001194": {
  4280. "bioguide": "M001194",
  4281. "chamber": "House of Representatives",
  4282. "district": null,
  4283. "full_name": "John R. Moolenaar",
  4284. "lis": null,
  4285. "party": "R",
  4286. "photo_url": "https://www.congress.gov/img/member/m001194_200.jpg",
  4287. "served_from": "2015-01-03",
  4288. "served_to": null,
  4289. "source": "congress.gov/v3",
  4290. "state": "MI"
  4291. },
  4292. "M001196": {
  4293. "bioguide": "M001196",
  4294. "chamber": "House of Representatives",
  4295. "district": null,
  4296. "full_name": "Seth Moulton",
  4297. "lis": null,
  4298. "party": "D",
  4299. "photo_url": "https://www.congress.gov/img/member/m001196_200.jpg",
  4300. "served_from": "2015-01-03",
  4301. "served_to": null,
  4302. "source": "congress.gov/v3",
  4303. "state": "MA"
  4304. },
  4305. "M001198": {
  4306. "bioguide": "M001198",
  4307. "chamber": "Senate",
  4308. "district": null,
  4309. "full_name": "Roger Marshall",
  4310. "lis": "S411",
  4311. "party": "R",
  4312. "photo_url": "https://www.congress.gov/img/member/m001198_200.jpg",
  4313. "served_from": "2017-01-03",
  4314. "served_to": null,
  4315. "source": "congress.gov/v3",
  4316. "state": "KS"
  4317. },
  4318. "M001199": {
  4319. "bioguide": "M001199",
  4320. "chamber": "House of Representatives",
  4321. "district": null,
  4322. "full_name": "Brian J. Mast",
  4323. "lis": null,
  4324. "party": "R",
  4325. "photo_url": "https://www.congress.gov/img/member/116_rp_fl_18_mast_brian_200.jpg",
  4326. "served_from": "2017-01-03",
  4327. "served_to": null,
  4328. "source": "congress.gov/v3",
  4329. "state": "FL"
  4330. },
  4331. "M001204": {
  4332. "bioguide": "M001204",
  4333. "chamber": "House of Representatives",
  4334. "district": null,
  4335. "full_name": "Daniel Meuser",
  4336. "lis": null,
  4337. "party": "R",
  4338. "photo_url": "https://www.congress.gov/img/member/6776ebbf4f8a93753830ca7d_200.jpg",
  4339. "served_from": "2019-01-03",
  4340. "served_to": null,
  4341. "source": "congress.gov/v3",
  4342. "state": "PA"
  4343. },
  4344. "M001205": {
  4345. "bioguide": "M001205",
  4346. "chamber": "House of Representatives",
  4347. "district": null,
  4348. "full_name": "Carol D. Miller",
  4349. "lis": null,
  4350. "party": "R",
  4351. "photo_url": "https://www.congress.gov/img/member/m001205_200.jpg",
  4352. "served_from": "2019-01-03",
  4353. "served_to": null,
  4354. "source": "congress.gov/v3",
  4355. "state": "WV"
  4356. },
  4357. "M001206": {
  4358. "bioguide": "M001206",
  4359. "chamber": "House of Representatives",
  4360. "district": null,
  4361. "full_name": "Joseph D. Morelle",
  4362. "lis": null,
  4363. "party": "D",
  4364. "photo_url": "https://www.congress.gov/img/member/67ffc962f22eaf56065817bb_200.jpg",
  4365. "served_from": "2018-01-03",
  4366. "served_to": null,
  4367. "source": "congress.gov/v3",
  4368. "state": "NY"
  4369. },
  4370. "M001208": {
  4371. "bioguide": "M001208",
  4372. "chamber": "House of Representatives",
  4373. "district": null,
  4374. "full_name": "Lucy McBath",
  4375. "lis": null,
  4376. "party": "D",
  4377. "photo_url": "https://www.congress.gov/img/member/m001208_200.jpg",
  4378. "served_from": "2019-01-03",
  4379. "served_to": null,
  4380. "source": "congress.gov/v3",
  4381. "state": "GA"
  4382. },
  4383. "M001210": {
  4384. "bioguide": "M001210",
  4385. "chamber": "House of Representatives",
  4386. "district": null,
  4387. "full_name": "Gregory F. Murphy",
  4388. "lis": null,
  4389. "party": "R",
  4390. "photo_url": "https://www.congress.gov/img/member/m001210_200.jpg",
  4391. "served_from": "2019-01-03",
  4392. "served_to": null,
  4393. "source": "congress.gov/v3",
  4394. "state": "NC"
  4395. },
  4396. "M001211": {
  4397. "bioguide": "M001211",
  4398. "chamber": "House of Representatives",
  4399. "district": null,
  4400. "full_name": "Mary E. Miller",
  4401. "lis": null,
  4402. "party": "R",
  4403. "photo_url": "https://www.congress.gov/img/member/m001211_200.jpg",
  4404. "served_from": "2021-01-03",
  4405. "served_to": null,
  4406. "source": "congress.gov/v3",
  4407. "state": "IL"
  4408. },
  4409. "M001212": {
  4410. "bioguide": "M001212",
  4411. "chamber": "House of Representatives",
  4412. "district": null,
  4413. "full_name": "Barry Moore",
  4414. "lis": null,
  4415. "party": "R",
  4416. "photo_url": "https://www.congress.gov/img/member/m001212_200.jpg",
  4417. "served_from": "2021-01-03",
  4418. "served_to": null,
  4419. "source": "congress.gov/v3",
  4420. "state": "AL"
  4421. },
  4422. "M001213": {
  4423. "bioguide": "M001213",
  4424. "chamber": "House of Representatives",
  4425. "district": null,
  4426. "full_name": "Blake D. Moore",
  4427. "lis": null,
  4428. "party": "R",
  4429. "photo_url": "https://www.congress.gov/img/member/m001213_200.jpg",
  4430. "served_from": "2021-01-03",
  4431. "served_to": null,
  4432. "source": "congress.gov/v3",
  4433. "state": "UT"
  4434. },
  4435. "M001214": {
  4436. "bioguide": "M001214",
  4437. "chamber": "House of Representatives",
  4438. "district": null,
  4439. "full_name": "Frank J. Mrvan",
  4440. "lis": null,
  4441. "party": "D",
  4442. "photo_url": "https://www.congress.gov/img/member/m001214_200.jpg",
  4443. "served_from": "2021-01-03",
  4444. "served_to": null,
  4445. "source": "congress.gov/v3",
  4446. "state": "IN"
  4447. },
  4448. "M001215": {
  4449. "bioguide": "M001215",
  4450. "chamber": "House of Representatives",
  4451. "district": null,
  4452. "full_name": "Mariannette Miller-Meeks",
  4453. "lis": null,
  4454. "party": "R",
  4455. "photo_url": "https://www.congress.gov/img/member/m001215_200.jpg",
  4456. "served_from": "2021-01-03",
  4457. "served_to": null,
  4458. "source": "congress.gov/v3",
  4459. "state": "IA"
  4460. },
  4461. "M001216": {
  4462. "bioguide": "M001216",
  4463. "chamber": "House of Representatives",
  4464. "district": null,
  4465. "full_name": "Cory Mills",
  4466. "lis": null,
  4467. "party": "R",
  4468. "photo_url": "https://www.congress.gov/img/member/m001216_200.jpg",
  4469. "served_from": "2023-01-03",
  4470. "served_to": null,
  4471. "source": "congress.gov/v3",
  4472. "state": "FL"
  4473. },
  4474. "M001217": {
  4475. "bioguide": "M001217",
  4476. "chamber": "House of Representatives",
  4477. "district": null,
  4478. "full_name": "Jared Moskowitz",
  4479. "lis": null,
  4480. "party": "D",
  4481. "photo_url": "https://www.congress.gov/img/member/m001217_200.jpg",
  4482. "served_from": "2023-01-03",
  4483. "served_to": null,
  4484. "source": "congress.gov/v3",
  4485. "state": "FL"
  4486. },
  4487. "M001218": {
  4488. "bioguide": "M001218",
  4489. "chamber": "House of Representatives",
  4490. "district": null,
  4491. "full_name": "Richard McCormick",
  4492. "lis": null,
  4493. "party": "R",
  4494. "photo_url": "https://www.congress.gov/img/member/m001218_200.jpg",
  4495. "served_from": "2023-01-03",
  4496. "served_to": null,
  4497. "source": "congress.gov/v3",
  4498. "state": "GA"
  4499. },
  4500. "M001219": {
  4501. "bioguide": "M001219",
  4502. "chamber": "House of Representatives",
  4503. "district": null,
  4504. "full_name": "James C. Moylan",
  4505. "lis": null,
  4506. "party": "R",
  4507. "photo_url": "https://www.congress.gov/img/member/m001219_200.jpg",
  4508. "served_from": "2023-01-03",
  4509. "served_to": null,
  4510. "source": "congress.gov/v3",
  4511. "state": "GU"
  4512. },
  4513. "M001220": {
  4514. "bioguide": "M001220",
  4515. "chamber": "House of Representatives",
  4516. "district": null,
  4517. "full_name": "Morgan McGarvey",
  4518. "lis": null,
  4519. "party": "D",
  4520. "photo_url": "https://www.congress.gov/img/member/m001220_200.jpg",
  4521. "served_from": "2023-01-03",
  4522. "served_to": null,
  4523. "source": "congress.gov/v3",
  4524. "state": "KY"
  4525. },
  4526. "M001222": {
  4527. "bioguide": "M001222",
  4528. "chamber": "House of Representatives",
  4529. "district": null,
  4530. "full_name": "Max L. Miller",
  4531. "lis": null,
  4532. "party": "R",
  4533. "photo_url": "https://www.congress.gov/img/member/680908fb6c2e6631263de71f_200.jpg",
  4534. "served_from": "2023-01-03",
  4535. "served_to": null,
  4536. "source": "congress.gov/v3",
  4537. "state": "OH"
  4538. },
  4539. "M001223": {
  4540. "bioguide": "M001223",
  4541. "chamber": "House of Representatives",
  4542. "district": null,
  4543. "full_name": "Seth Magaziner",
  4544. "lis": null,
  4545. "party": "D",
  4546. "photo_url": "https://www.congress.gov/img/member/m001223_200.jpg",
  4547. "served_from": "2023-01-03",
  4548. "served_to": null,
  4549. "source": "congress.gov/v3",
  4550. "state": "RI"
  4551. },
  4552. "M001224": {
  4553. "bioguide": "M001224",
  4554. "chamber": "House of Representatives",
  4555. "district": null,
  4556. "full_name": "Nathaniel Moran",
  4557. "lis": null,
  4558. "party": "R",
  4559. "photo_url": "https://www.congress.gov/img/member/680008c5f22eaf56065817f4_200.jpg",
  4560. "served_from": "2023-01-03",
  4561. "served_to": null,
  4562. "source": "congress.gov/v3",
  4563. "state": "TX"
  4564. },
  4565. "M001225": {
  4566. "bioguide": "M001225",
  4567. "chamber": "House of Representatives",
  4568. "district": null,
  4569. "full_name": "Kevin Mullin",
  4570. "lis": null,
  4571. "party": "D",
  4572. "photo_url": "https://www.congress.gov/img/member/m001225_200.jpg",
  4573. "served_from": "2023-01-03",
  4574. "served_to": null,
  4575. "source": "congress.gov/v3",
  4576. "state": "CA"
  4577. },
  4578. "M001226": {
  4579. "bioguide": "M001226",
  4580. "chamber": "House of Representatives",
  4581. "district": null,
  4582. "full_name": "Robert Menendez",
  4583. "lis": null,
  4584. "party": "D",
  4585. "photo_url": "https://www.congress.gov/img/member/681231f6246d1b6bd8d9f6b4_200.jpg",
  4586. "served_from": "2023-01-03",
  4587. "served_to": null,
  4588. "source": "congress.gov/v3",
  4589. "state": "NJ"
  4590. },
  4591. "M001227": {
  4592. "bioguide": "M001227",
  4593. "chamber": "House of Representatives",
  4594. "district": null,
  4595. "full_name": "Jennifer L. McClellan",
  4596. "lis": null,
  4597. "party": "D",
  4598. "photo_url": "https://www.congress.gov/img/member/m001227_200.jpg",
  4599. "served_from": "2023-01-03",
  4600. "served_to": null,
  4601. "source": "congress.gov/v3",
  4602. "state": "VA"
  4603. },
  4604. "M001228": {
  4605. "bioguide": "M001228",
  4606. "chamber": "House of Representatives",
  4607. "district": null,
  4608. "full_name": "Celeste Maloy",
  4609. "lis": null,
  4610. "party": "R",
  4611. "photo_url": "https://www.congress.gov/img/member/m001228_200.jpg",
  4612. "served_from": "2023-01-03",
  4613. "served_to": null,
  4614. "source": "congress.gov/v3",
  4615. "state": "UT"
  4616. },
  4617. "M001229": {
  4618. "bioguide": "M001229",
  4619. "chamber": "House of Representatives",
  4620. "district": null,
  4621. "full_name": "LaMonica McIver",
  4622. "lis": null,
  4623. "party": "D",
  4624. "photo_url": "https://www.congress.gov/img/member/681dfed94fc893ce843e24b8_200.jpg",
  4625. "served_from": "2024-01-03",
  4626. "served_to": null,
  4627. "source": "congress.gov/v3",
  4628. "state": "NJ"
  4629. },
  4630. "M001230": {
  4631. "bioguide": "M001230",
  4632. "chamber": "House of Representatives",
  4633. "district": null,
  4634. "full_name": "Ryan Mackenzie",
  4635. "lis": null,
  4636. "party": "R",
  4637. "photo_url": "https://www.congress.gov/img/member/677430a40b34857ecc909113_200.jpg",
  4638. "served_from": "2025-01-03",
  4639. "served_to": null,
  4640. "source": "congress.gov/v3",
  4641. "state": "PA"
  4642. },
  4643. "M001231": {
  4644. "bioguide": "M001231",
  4645. "chamber": "House of Representatives",
  4646. "district": null,
  4647. "full_name": "John W. Mannion",
  4648. "lis": null,
  4649. "party": "D",
  4650. "photo_url": "https://www.congress.gov/img/member/677446860b34857ecc909119_200.jpg",
  4651. "served_from": "2025-01-03",
  4652. "served_to": null,
  4653. "source": "congress.gov/v3",
  4654. "state": "NY"
  4655. },
  4656. "M001232": {
  4657. "bioguide": "M001232",
  4658. "chamber": "House of Representatives",
  4659. "district": null,
  4660. "full_name": "April McClain Delaney",
  4661. "lis": null,
  4662. "party": "D",
  4663. "photo_url": "https://www.congress.gov/img/member/677446d80b34857ecc90911f_200.jpg",
  4664. "served_from": "2025-01-03",
  4665. "served_to": null,
  4666. "source": "congress.gov/v3",
  4667. "state": "MD"
  4668. },
  4669. "M001233": {
  4670. "bioguide": "M001233",
  4671. "chamber": "House of Representatives",
  4672. "district": null,
  4673. "full_name": "Mark B. Messmer",
  4674. "lis": null,
  4675. "party": "R",
  4676. "photo_url": "https://www.congress.gov/img/member/677448630b34857ecc909125_200.jpg",
  4677. "served_from": "2025-01-03",
  4678. "served_to": null,
  4679. "source": "congress.gov/v3",
  4680. "state": "IN"
  4681. },
  4682. "M001234": {
  4683. "bioguide": "M001234",
  4684. "chamber": "House of Representatives",
  4685. "district": null,
  4686. "full_name": "Kelly Morrison",
  4687. "lis": null,
  4688. "party": "D",
  4689. "photo_url": "https://www.congress.gov/img/member/677449a70b34857ecc90912b_200.jpg",
  4690. "served_from": "2025-01-03",
  4691. "served_to": null,
  4692. "source": "congress.gov/v3",
  4693. "state": "MN"
  4694. },
  4695. "M001235": {
  4696. "bioguide": "M001235",
  4697. "chamber": "House of Representatives",
  4698. "district": null,
  4699. "full_name": "Riley M. Moore",
  4700. "lis": null,
  4701. "party": "R",
  4702. "photo_url": "https://www.congress.gov/img/member/677449fd0b34857ecc909131_200.jpg",
  4703. "served_from": "2025-01-03",
  4704. "served_to": null,
  4705. "source": "congress.gov/v3",
  4706. "state": "WV"
  4707. },
  4708. "M001236": {
  4709. "bioguide": "M001236",
  4710. "chamber": "House of Representatives",
  4711. "district": null,
  4712. "full_name": "Tim Moore",
  4713. "lis": null,
  4714. "party": "R",
  4715. "photo_url": "https://www.congress.gov/img/member/67744a540b34857ecc909137_200.jpg",
  4716. "served_from": "2025-01-03",
  4717. "served_to": null,
  4718. "source": "congress.gov/v3",
  4719. "state": "NC"
  4720. },
  4721. "M001237": {
  4722. "bioguide": "M001237",
  4723. "chamber": "House of Representatives",
  4724. "district": null,
  4725. "full_name": "Kristen McDonald Rivet",
  4726. "lis": null,
  4727. "party": "D",
  4728. "photo_url": "https://www.congress.gov/img/member/69d7f4ee7304cef7a0c977a8_200.jpg",
  4729. "served_from": "2025-01-03",
  4730. "served_to": null,
  4731. "source": "congress.gov/v3",
  4732. "state": "MI"
  4733. },
  4734. "M001238": {
  4735. "bioguide": "M001238",
  4736. "chamber": "House of Representatives",
  4737. "district": null,
  4738. "full_name": "Sarah McBride",
  4739. "lis": null,
  4740. "party": "D",
  4741. "photo_url": "https://www.congress.gov/img/member/67744b460b34857ecc909143_200.jpg",
  4742. "served_from": "2025-01-03",
  4743. "served_to": null,
  4744. "source": "congress.gov/v3",
  4745. "state": "DE"
  4746. },
  4747. "M001239": {
  4748. "bioguide": "M001239",
  4749. "chamber": "House of Representatives",
  4750. "district": null,
  4751. "full_name": "John J. McGuire",
  4752. "lis": null,
  4753. "party": "R",
  4754. "photo_url": "https://www.congress.gov/img/member/67744ba20b34857ecc909149_200.jpg",
  4755. "served_from": "2025-01-03",
  4756. "served_to": null,
  4757. "source": "congress.gov/v3",
  4758. "state": "VA"
  4759. },
  4760. "M001240": {
  4761. "bioguide": "M001240",
  4762. "chamber": "House of Representatives",
  4763. "district": null,
  4764. "full_name": "Addison P. McDowell",
  4765. "lis": null,
  4766. "party": "R",
  4767. "photo_url": "https://www.congress.gov/img/member/67744e930b34857ecc90914f_200.jpg",
  4768. "served_from": "2025-01-03",
  4769. "served_to": null,
  4770. "source": "congress.gov/v3",
  4771. "state": "NC"
  4772. },
  4773. "M001241": {
  4774. "bioguide": "M001241",
  4775. "chamber": "House of Representatives",
  4776. "district": null,
  4777. "full_name": "Dave Min",
  4778. "lis": null,
  4779. "party": "D",
  4780. "photo_url": "https://www.congress.gov/img/member/67744ed90b34857ecc909155_200.jpg",
  4781. "served_from": "2025-01-03",
  4782. "served_to": null,
  4783. "source": "congress.gov/v3",
  4784. "state": "CA"
  4785. },
  4786. "M001242": {
  4787. "bioguide": "M001242",
  4788. "chamber": "Senate",
  4789. "district": null,
  4790. "full_name": "Bernie Moreno",
  4791. "lis": "S434",
  4792. "party": "R",
  4793. "photo_url": "https://www.congress.gov/img/member/67c8694e6159152e59828afb_200.jpg",
  4794. "served_from": "2025-01-03",
  4795. "served_to": null,
  4796. "source": "congress.gov/v3",
  4797. "state": "OH"
  4798. },
  4799. "M001243": {
  4800. "bioguide": "M001243",
  4801. "chamber": "Senate",
  4802. "district": null,
  4803. "full_name": "David McCormick",
  4804. "lis": "S433",
  4805. "party": "R",
  4806. "photo_url": "https://www.congress.gov/img/member/677d85e0fdb6cf36bbb649aa_200.jpg",
  4807. "served_from": "2025-01-03",
  4808. "served_to": null,
  4809. "source": "congress.gov/v3",
  4810. "state": "PA"
  4811. },
  4812. "M001244": {
  4813. "bioguide": "M001244",
  4814. "chamber": "Senate",
  4815. "district": null,
  4816. "full_name": "Ashley Moody",
  4817. "lis": "S439",
  4818. "party": "R",
  4819. "photo_url": "https://www.congress.gov/img/member/https://bioguide.congress.gov/photo/695d82c8550dfb80c3063bee.jpg",
  4820. "served_from": "2025-01-03",
  4821. "served_to": null,
  4822. "source": "congress.gov/v3",
  4823. "state": "FL"
  4824. },
  4825. "M001245": {
  4826. "bioguide": "M001245",
  4827. "chamber": "House of Representatives",
  4828. "district": null,
  4829. "full_name": "Christian D. Menefee",
  4830. "lis": null,
  4831. "party": "D",
  4832. "photo_url": "https://www.congress.gov/img/member/698206b2eb30d3271899373e_200.jpg",
  4833. "served_from": "2026-01-03",
  4834. "served_to": null,
  4835. "source": "congress.gov/v3",
  4836. "state": "TX"
  4837. },
  4838. "M001246": {
  4839. "bioguide": "M001246",
  4840. "chamber": "House of Representatives",
  4841. "district": null,
  4842. "full_name": "Analilia Mejia",
  4843. "lis": null,
  4844. "party": "D",
  4845. "photo_url": "https://www.congress.gov/img/member/69eb9743277642362f6112ce_200.jpg",
  4846. "served_from": "2026-01-03",
  4847. "served_to": null,
  4848. "source": "congress.gov/v3",
  4849. "state": "NJ"
  4850. },
  4851. "N000002": {
  4852. "bioguide": "N000002",
  4853. "chamber": "House of Representatives",
  4854. "district": null,
  4855. "full_name": "Jerrold Nadler",
  4856. "lis": null,
  4857. "party": "D",
  4858. "photo_url": "https://www.congress.gov/img/member/n000002_200.jpg",
  4859. "served_from": "1991-01-03",
  4860. "served_to": null,
  4861. "source": "congress.gov/v3",
  4862. "state": "NY"
  4863. },
  4864. "N000015": {
  4865. "bioguide": "N000015",
  4866. "chamber": "House of Representatives",
  4867. "district": null,
  4868. "full_name": "Richard E. Neal",
  4869. "lis": null,
  4870. "party": "D",
  4871. "photo_url": "https://www.congress.gov/img/member/n000015_200.jpg",
  4872. "served_from": "1989-01-03",
  4873. "served_to": null,
  4874. "source": "congress.gov/v3",
  4875. "state": "MA"
  4876. },
  4877. "N000026": {
  4878. "bioguide": "N000026",
  4879. "chamber": "House of Representatives",
  4880. "district": null,
  4881. "full_name": "Troy E. Nehls",
  4882. "lis": null,
  4883. "party": "R",
  4884. "photo_url": "https://www.congress.gov/img/member/n000026_200.jpg",
  4885. "served_from": "2021-01-03",
  4886. "served_to": null,
  4887. "source": "congress.gov/v3",
  4888. "state": "TX"
  4889. },
  4890. "N000147": {
  4891. "bioguide": "N000147",
  4892. "chamber": "House of Representatives",
  4893. "district": null,
  4894. "full_name": "Eleanor Holmes Norton",
  4895. "lis": null,
  4896. "party": "D",
  4897. "photo_url": "https://www.congress.gov/img/member/116_dg_dc_norton_eleanor_200.jpg",
  4898. "served_from": "1991-01-03",
  4899. "served_to": null,
  4900. "source": "congress.gov/v3",
  4901. "state": "DC"
  4902. },
  4903. "N000188": {
  4904. "bioguide": "N000188",
  4905. "chamber": "House of Representatives",
  4906. "district": null,
  4907. "full_name": "Donald Norcross",
  4908. "lis": null,
  4909. "party": "D",
  4910. "photo_url": "https://www.congress.gov/img/member/n000188_200.jpg",
  4911. "served_from": "2014-01-03",
  4912. "served_to": null,
  4913. "source": "congress.gov/v3",
  4914. "state": "NJ"
  4915. },
  4916. "N000189": {
  4917. "bioguide": "N000189",
  4918. "chamber": "House of Representatives",
  4919. "district": null,
  4920. "full_name": "Dan Newhouse",
  4921. "lis": null,
  4922. "party": "R",
  4923. "photo_url": "https://www.congress.gov/img/member/116_rp_wa_4_newhouse_dan_200.jpg",
  4924. "served_from": "2015-01-03",
  4925. "served_to": null,
  4926. "source": "congress.gov/v3",
  4927. "state": "WA"
  4928. },
  4929. "N000190": {
  4930. "bioguide": "N000190",
  4931. "chamber": "House of Representatives",
  4932. "district": null,
  4933. "full_name": "Ralph Norman",
  4934. "lis": null,
  4935. "party": "R",
  4936. "photo_url": "https://www.congress.gov/img/member/n000190_200.jpg",
  4937. "served_from": "2017-01-03",
  4938. "served_to": null,
  4939. "source": "congress.gov/v3",
  4940. "state": "SC"
  4941. },
  4942. "N000191": {
  4943. "bioguide": "N000191",
  4944. "chamber": "House of Representatives",
  4945. "district": null,
  4946. "full_name": "Joe Neguse",
  4947. "lis": null,
  4948. "party": "D",
  4949. "photo_url": "https://www.congress.gov/img/member/n000191_200.jpg",
  4950. "served_from": "2019-01-03",
  4951. "served_to": null,
  4952. "source": "congress.gov/v3",
  4953. "state": "CO"
  4954. },
  4955. "N000193": {
  4956. "bioguide": "N000193",
  4957. "chamber": "House of Representatives",
  4958. "district": null,
  4959. "full_name": "Zachary Nunn",
  4960. "lis": null,
  4961. "party": "R",
  4962. "photo_url": "https://www.congress.gov/img/member/n000193_200.jpg",
  4963. "served_from": "2023-01-03",
  4964. "served_to": null,
  4965. "source": "congress.gov/v3",
  4966. "state": "IA"
  4967. },
  4968. "O000019": {
  4969. "bioguide": "O000019",
  4970. "chamber": "House of Representatives",
  4971. "district": null,
  4972. "full_name": "Jay Obernolte",
  4973. "lis": null,
  4974. "party": "R",
  4975. "photo_url": "https://www.congress.gov/img/member/o000019_200.jpg",
  4976. "served_from": "2021-01-03",
  4977. "served_to": null,
  4978. "source": "congress.gov/v3",
  4979. "state": "CA"
  4980. },
  4981. "O000086": {
  4982. "bioguide": "O000086",
  4983. "chamber": "House of Representatives",
  4984. "district": null,
  4985. "full_name": "Burgess Owens",
  4986. "lis": null,
  4987. "party": "R",
  4988. "photo_url": "https://www.congress.gov/img/member/o000086_200.jpg",
  4989. "served_from": "2021-01-03",
  4990. "served_to": null,
  4991. "source": "congress.gov/v3",
  4992. "state": "UT"
  4993. },
  4994. "O000172": {
  4995. "bioguide": "O000172",
  4996. "chamber": "House of Representatives",
  4997. "district": null,
  4998. "full_name": "Alexandria Ocasio-Cortez",
  4999. "lis": null,
  5000. "party": "D",
  5001. "photo_url": "https://www.congress.gov/img/member/o000172_200.jpg",
  5002. "served_from": "2019-01-03",
  5003. "served_to": null,
  5004. "source": "congress.gov/v3",
  5005. "state": "NY"
  5006. },
  5007. "O000173": {
  5008. "bioguide": "O000173",
  5009. "chamber": "House of Representatives",
  5010. "district": null,
  5011. "full_name": "Ilhan Omar",
  5012. "lis": null,
  5013. "party": "D",
  5014. "photo_url": "https://www.congress.gov/img/member/o000173_200.jpg",
  5015. "served_from": "2019-01-03",
  5016. "served_to": null,
  5017. "source": "congress.gov/v3",
  5018. "state": "MN"
  5019. },
  5020. "O000174": {
  5021. "bioguide": "O000174",
  5022. "chamber": "Senate",
  5023. "district": null,
  5024. "full_name": "Jon Ossoff",
  5025. "lis": "S414",
  5026. "party": "D",
  5027. "photo_url": "https://www.congress.gov/img/member/o000174_200.jpg",
  5028. "served_from": "2021-01-03",
  5029. "served_to": null,
  5030. "source": "congress.gov/v3",
  5031. "state": "GA"
  5032. },
  5033. "O000175": {
  5034. "bioguide": "O000175",
  5035. "chamber": "House of Representatives",
  5036. "district": null,
  5037. "full_name": "Andrew Ogles",
  5038. "lis": null,
  5039. "party": "R",
  5040. "photo_url": "https://www.congress.gov/img/member/o000175_200.jpg",
  5041. "served_from": "2023-01-03",
  5042. "served_to": null,
  5043. "source": "congress.gov/v3",
  5044. "state": "TN"
  5045. },
  5046. "O000176": {
  5047. "bioguide": "O000176",
  5048. "chamber": "House of Representatives",
  5049. "district": null,
  5050. "full_name": "Johnny Olszewski",
  5051. "lis": null,
  5052. "party": "D",
  5053. "photo_url": "https://www.congress.gov/img/member/67744f4e0b34857ecc90915b_200.jpg",
  5054. "served_from": "2025-01-03",
  5055. "served_to": null,
  5056. "source": "congress.gov/v3",
  5057. "state": "MD"
  5058. },
  5059. "O000177": {
  5060. "bioguide": "O000177",
  5061. "chamber": "House of Representatives",
  5062. "district": null,
  5063. "full_name": "Robert F. Onder",
  5064. "lis": null,
  5065. "party": "R",
  5066. "photo_url": "https://www.congress.gov/img/member/67744f970b34857ecc909161_200.jpg",
  5067. "served_from": "2025-01-03",
  5068. "served_to": null,
  5069. "source": "congress.gov/v3",
  5070. "state": "MO"
  5071. },
  5072. "P000034": {
  5073. "bioguide": "P000034",
  5074. "chamber": "House of Representatives",
  5075. "district": null,
  5076. "full_name": "Frank Pallone",
  5077. "lis": null,
  5078. "party": "D",
  5079. "photo_url": "https://www.congress.gov/img/member/p000034_200.jpg",
  5080. "served_from": "1987-01-03",
  5081. "served_to": null,
  5082. "source": "congress.gov/v3",
  5083. "state": "NJ"
  5084. },
  5085. "P000048": {
  5086. "bioguide": "P000048",
  5087. "chamber": "House of Representatives",
  5088. "district": null,
  5089. "full_name": "August Pfluger",
  5090. "lis": null,
  5091. "party": "R",
  5092. "photo_url": "https://www.congress.gov/img/member/p000048_200.jpg",
  5093. "served_from": "2021-01-03",
  5094. "served_to": null,
  5095. "source": "congress.gov/v3",
  5096. "state": "TX"
  5097. },
  5098. "P000145": {
  5099. "bioguide": "P000145",
  5100. "chamber": "Senate",
  5101. "district": null,
  5102. "full_name": "Alex Padilla",
  5103. "lis": "S413",
  5104. "party": "D",
  5105. "photo_url": "https://www.congress.gov/img/member/p000145_200.jpg",
  5106. "served_from": "2021-01-03",
  5107. "served_to": null,
  5108. "source": "congress.gov/v3",
  5109. "state": "CA"
  5110. },
  5111. "P000197": {
  5112. "bioguide": "P000197",
  5113. "chamber": "House of Representatives",
  5114. "district": null,
  5115. "full_name": "Nancy Pelosi",
  5116. "lis": null,
  5117. "party": "D",
  5118. "photo_url": "https://www.congress.gov/img/member/p000197_200.jpg",
  5119. "served_from": "1987-01-03",
  5120. "served_to": null,
  5121. "source": "congress.gov/v3",
  5122. "state": "CA"
  5123. },
  5124. "P000595": {
  5125. "bioguide": "P000595",
  5126. "chamber": "Senate",
  5127. "district": null,
  5128. "full_name": "Gary C. Peters",
  5129. "lis": "S380",
  5130. "party": "D",
  5131. "photo_url": "https://www.congress.gov/img/member/p000595_200.jpg",
  5132. "served_from": "2009-01-03",
  5133. "served_to": null,
  5134. "source": "congress.gov/v3",
  5135. "state": "MI"
  5136. },
  5137. "P000597": {
  5138. "bioguide": "P000597",
  5139. "chamber": "House of Representatives",
  5140. "district": null,
  5141. "full_name": "Chellie Pingree",
  5142. "lis": null,
  5143. "party": "D",
  5144. "photo_url": "https://www.congress.gov/img/member/p000597_200.jpg",
  5145. "served_from": "2009-01-03",
  5146. "served_to": null,
  5147. "source": "congress.gov/v3",
  5148. "state": "ME"
  5149. },
  5150. "P000603": {
  5151. "bioguide": "P000603",
  5152. "chamber": "Senate",
  5153. "district": null,
  5154. "full_name": "Rand Paul",
  5155. "lis": "S348",
  5156. "party": "R",
  5157. "photo_url": "https://www.congress.gov/img/member/p000603_200.jpg",
  5158. "served_from": "2011-01-03",
  5159. "served_to": null,
  5160. "source": "congress.gov/v3",
  5161. "state": "KY"
  5162. },
  5163. "P000605": {
  5164. "bioguide": "P000605",
  5165. "chamber": "House of Representatives",
  5166. "district": null,
  5167. "full_name": "Scott Perry",
  5168. "lis": null,
  5169. "party": "R",
  5170. "photo_url": "https://www.congress.gov/img/member/677ec7d3514c773869b6b915_200.jpg",
  5171. "served_from": "2013-01-03",
  5172. "served_to": null,
  5173. "source": "congress.gov/v3",
  5174. "state": "PA"
  5175. },
  5176. "P000607": {
  5177. "bioguide": "P000607",
  5178. "chamber": "House of Representatives",
  5179. "district": null,
  5180. "full_name": "Mark Pocan",
  5181. "lis": null,
  5182. "party": "D",
  5183. "photo_url": "https://www.congress.gov/img/member/p000607_200.jpg",
  5184. "served_from": "2013-01-03",
  5185. "served_to": null,
  5186. "source": "congress.gov/v3",
  5187. "state": "WI"
  5188. },
  5189. "P000608": {
  5190. "bioguide": "P000608",
  5191. "chamber": "House of Representatives",
  5192. "district": null,
  5193. "full_name": "Scott H. Peters",
  5194. "lis": null,
  5195. "party": "D",
  5196. "photo_url": "https://www.congress.gov/img/member/p000608_200.jpg",
  5197. "served_from": "2013-01-03",
  5198. "served_to": null,
  5199. "source": "congress.gov/v3",
  5200. "state": "CA"
  5201. },
  5202. "P000609": {
  5203. "bioguide": "P000609",
  5204. "chamber": "House of Representatives",
  5205. "district": null,
  5206. "full_name": "Gary J. Palmer",
  5207. "lis": null,
  5208. "party": "R",
  5209. "photo_url": "https://www.congress.gov/img/member/p000609_200.jpg",
  5210. "served_from": "2015-01-03",
  5211. "served_to": null,
  5212. "source": "congress.gov/v3",
  5213. "state": "AL"
  5214. },
  5215. "P000610": {
  5216. "bioguide": "P000610",
  5217. "chamber": "House of Representatives",
  5218. "district": null,
  5219. "full_name": "Stacey E. Plaskett",
  5220. "lis": null,
  5221. "party": "D",
  5222. "photo_url": "https://www.congress.gov/img/member/116_dg_vi_plaskett_stacey_200.jpg",
  5223. "served_from": "2015-01-03",
  5224. "served_to": null,
  5225. "source": "congress.gov/v3",
  5226. "state": "VI"
  5227. },
  5228. "P000613": {
  5229. "bioguide": "P000613",
  5230. "chamber": "House of Representatives",
  5231. "district": null,
  5232. "full_name": "Jimmy Panetta",
  5233. "lis": null,
  5234. "party": "D",
  5235. "photo_url": "https://www.congress.gov/img/member/116_rp_ca_20_panetta_jimmy_200.jpg",
  5236. "served_from": "2017-01-03",
  5237. "served_to": null,
  5238. "source": "congress.gov/v3",
  5239. "state": "CA"
  5240. },
  5241. "P000614": {
  5242. "bioguide": "P000614",
  5243. "chamber": "House of Representatives",
  5244. "district": null,
  5245. "full_name": "Chris Pappas",
  5246. "lis": null,
  5247. "party": "D",
  5248. "photo_url": "https://www.congress.gov/img/member/p000614_200.jpg",
  5249. "served_from": "2019-01-03",
  5250. "served_to": null,
  5251. "source": "congress.gov/v3",
  5252. "state": "NH"
  5253. },
  5254. "P000617": {
  5255. "bioguide": "P000617",
  5256. "chamber": "House of Representatives",
  5257. "district": null,
  5258. "full_name": "Ayanna Pressley",
  5259. "lis": null,
  5260. "party": "D",
  5261. "photo_url": "https://www.congress.gov/img/member/p000617_200.jpg",
  5262. "served_from": "2019-01-03",
  5263. "served_to": null,
  5264. "source": "congress.gov/v3",
  5265. "state": "MA"
  5266. },
  5267. "P000620": {
  5268. "bioguide": "P000620",
  5269. "chamber": "House of Representatives",
  5270. "district": null,
  5271. "full_name": "Brittany Pettersen",
  5272. "lis": null,
  5273. "party": "D",
  5274. "photo_url": "https://www.congress.gov/img/member/p000620_200.jpg",
  5275. "served_from": "2023-01-03",
  5276. "served_to": null,
  5277. "source": "congress.gov/v3",
  5278. "state": "CO"
  5279. },
  5280. "P000621": {
  5281. "bioguide": "P000621",
  5282. "chamber": "House of Representatives",
  5283. "district": null,
  5284. "full_name": "Nellie Pou",
  5285. "lis": null,
  5286. "party": "D",
  5287. "photo_url": "https://www.congress.gov/img/member/67745d3b0b34857ecc909167_200.jpg",
  5288. "served_from": "2025-01-03",
  5289. "served_to": null,
  5290. "source": "congress.gov/v3",
  5291. "state": "NJ"
  5292. },
  5293. "P000622": {
  5294. "bioguide": "P000622",
  5295. "chamber": "House of Representatives",
  5296. "district": null,
  5297. "full_name": "Jimmy Patronis",
  5298. "lis": null,
  5299. "party": "R",
  5300. "photo_url": "https://www.congress.gov/img/member/67efdb991b05a5a598f7fde9_200.jpg",
  5301. "served_from": "2025-01-03",
  5302. "served_to": null,
  5303. "source": "congress.gov/v3",
  5304. "state": "FL"
  5305. },
  5306. "Q000023": {
  5307. "bioguide": "Q000023",
  5308. "chamber": "House of Representatives",
  5309. "district": null,
  5310. "full_name": "Mike Quigley",
  5311. "lis": null,
  5312. "party": "D",
  5313. "photo_url": "https://www.congress.gov/img/member/q000023_200.jpg",
  5314. "served_from": "2009-01-03",
  5315. "served_to": null,
  5316. "source": "congress.gov/v3",
  5317. "state": "IL"
  5318. },
  5319. "R000122": {
  5320. "bioguide": "R000122",
  5321. "chamber": "Senate",
  5322. "district": null,
  5323. "full_name": "Jack Reed",
  5324. "lis": "S259",
  5325. "party": "D",
  5326. "photo_url": "https://www.congress.gov/img/member/r000122_200.jpg",
  5327. "served_from": "1991-01-03",
  5328. "served_to": null,
  5329. "source": "congress.gov/v3",
  5330. "state": "RI"
  5331. },
  5332. "R000305": {
  5333. "bioguide": "R000305",
  5334. "chamber": "House of Representatives",
  5335. "district": null,
  5336. "full_name": "Deborah K. Ross",
  5337. "lis": null,
  5338. "party": "D",
  5339. "photo_url": "https://www.congress.gov/img/member/r000305_200.jpg",
  5340. "served_from": "2021-01-03",
  5341. "served_to": null,
  5342. "source": "congress.gov/v3",
  5343. "state": "NC"
  5344. },
  5345. "R000395": {
  5346. "bioguide": "R000395",
  5347. "chamber": "House of Representatives",
  5348. "district": null,
  5349. "full_name": "Harold Rogers",
  5350. "lis": null,
  5351. "party": "R",
  5352. "photo_url": "https://www.congress.gov/img/member/r000395_200.jpg",
  5353. "served_from": "1981-01-03",
  5354. "served_to": null,
  5355. "source": "congress.gov/v3",
  5356. "state": "KY"
  5357. },
  5358. "R000575": {
  5359. "bioguide": "R000575",
  5360. "chamber": "House of Representatives",
  5361. "district": null,
  5362. "full_name": "Mike D. Rogers",
  5363. "lis": null,
  5364. "party": "R",
  5365. "photo_url": "https://www.congress.gov/img/member/116_rp_al_3_rogers_mike_200.jpg",
  5366. "served_from": "2003-01-03",
  5367. "served_to": null,
  5368. "source": "congress.gov/v3",
  5369. "state": "AL"
  5370. },
  5371. "R000579": {
  5372. "bioguide": "R000579",
  5373. "chamber": "House of Representatives",
  5374. "district": null,
  5375. "full_name": "Patrick Ryan",
  5376. "lis": null,
  5377. "party": "D",
  5378. "photo_url": "https://www.congress.gov/img/member/r000579_200.jpg",
  5379. "served_from": "2022-01-03",
  5380. "served_to": null,
  5381. "source": "congress.gov/v3",
  5382. "state": "NY"
  5383. },
  5384. "R000584": {
  5385. "bioguide": "R000584",
  5386. "chamber": "Senate",
  5387. "district": null,
  5388. "full_name": "James E. Risch",
  5389. "lis": "S323",
  5390. "party": "R",
  5391. "photo_url": "https://www.congress.gov/img/member/r000584_200.jpg",
  5392. "served_from": "2009-01-03",
  5393. "served_to": null,
  5394. "source": "congress.gov/v3",
  5395. "state": "ID"
  5396. },
  5397. "R000595": {
  5398. "bioguide": "R000595",
  5399. "chamber": "Senate",
  5400. "district": null,
  5401. "full_name": "Marco Rubio",
  5402. "lis": "S350",
  5403. "party": "R",
  5404. "photo_url": "https://www.congress.gov/img/member/r000595_200.jpg",
  5405. "served_from": "2011-01-03",
  5406. "served_to": "2025-01-03",
  5407. "source": "congress.gov/v3",
  5408. "state": "FL"
  5409. },
  5410. "R000599": {
  5411. "bioguide": "R000599",
  5412. "chamber": "House of Representatives",
  5413. "district": null,
  5414. "full_name": "Raul Ruiz",
  5415. "lis": null,
  5416. "party": "D",
  5417. "photo_url": "https://www.congress.gov/img/member/66e1aec832c796cea99fe06f_200.jpg",
  5418. "served_from": "2013-01-03",
  5419. "served_to": null,
  5420. "source": "congress.gov/v3",
  5421. "state": "CA"
  5422. },
  5423. "R000600": {
  5424. "bioguide": "R000600",
  5425. "chamber": "House of Representatives",
  5426. "district": null,
  5427. "full_name": "Aumua Amata Coleman Radewagen",
  5428. "lis": null,
  5429. "party": "R",
  5430. "photo_url": "https://www.congress.gov/img/member/r000600_200.jpg",
  5431. "served_from": "2015-01-03",
  5432. "served_to": null,
  5433. "source": "congress.gov/v3",
  5434. "state": "AS"
  5435. },
  5436. "R000603": {
  5437. "bioguide": "R000603",
  5438. "chamber": "House of Representatives",
  5439. "district": null,
  5440. "full_name": "David Rouzer",
  5441. "lis": null,
  5442. "party": "R",
  5443. "photo_url": "https://www.congress.gov/img/member/r000603_200.jpg",
  5444. "served_from": "2015-01-03",
  5445. "served_to": null,
  5446. "source": "congress.gov/v3",
  5447. "state": "NC"
  5448. },
  5449. "R000605": {
  5450. "bioguide": "R000605",
  5451. "chamber": "Senate",
  5452. "district": null,
  5453. "full_name": "Mike Rounds",
  5454. "lis": "S381",
  5455. "party": "R",
  5456. "photo_url": "https://www.congress.gov/img/member/r000605_200.jpg",
  5457. "served_from": "2015-01-03",
  5458. "served_to": null,
  5459. "source": "congress.gov/v3",
  5460. "state": "SD"
  5461. },
  5462. "R000606": {
  5463. "bioguide": "R000606",
  5464. "chamber": "House of Representatives",
  5465. "district": null,
  5466. "full_name": "Jamie Raskin",
  5467. "lis": null,
  5468. "party": "D",
  5469. "photo_url": "https://www.congress.gov/img/member/r000606_200.jpg",
  5470. "served_from": "2017-01-03",
  5471. "served_to": null,
  5472. "source": "congress.gov/v3",
  5473. "state": "MD"
  5474. },
  5475. "R000608": {
  5476. "bioguide": "R000608",
  5477. "chamber": "Senate",
  5478. "district": null,
  5479. "full_name": "Jacky Rosen",
  5480. "lis": "S402",
  5481. "party": "D",
  5482. "photo_url": "https://www.congress.gov/img/member/r000608_200.jpg",
  5483. "served_from": "2017-01-03",
  5484. "served_to": null,
  5485. "source": "congress.gov/v3",
  5486. "state": "NV"
  5487. },
  5488. "R000609": {
  5489. "bioguide": "R000609",
  5490. "chamber": "House of Representatives",
  5491. "district": null,
  5492. "full_name": "John H. Rutherford",
  5493. "lis": null,
  5494. "party": "R",
  5495. "photo_url": "https://www.congress.gov/img/member/r000609_200.jpg",
  5496. "served_from": "2017-01-03",
  5497. "served_to": null,
  5498. "source": "congress.gov/v3",
  5499. "state": "FL"
  5500. },
  5501. "R000610": {
  5502. "bioguide": "R000610",
  5503. "chamber": "House of Representatives",
  5504. "district": null,
  5505. "full_name": "Guy Reschenthaler",
  5506. "lis": null,
  5507. "party": "R",
  5508. "photo_url": "https://www.congress.gov/img/member/r000610_200.jpg",
  5509. "served_from": "2019-01-03",
  5510. "served_to": null,
  5511. "source": "congress.gov/v3",
  5512. "state": "PA"
  5513. },
  5514. "R000612": {
  5515. "bioguide": "R000612",
  5516. "chamber": "House of Representatives",
  5517. "district": null,
  5518. "full_name": "John W. Rose",
  5519. "lis": null,
  5520. "party": "R",
  5521. "photo_url": "https://www.congress.gov/img/member/r000612_200.jpg",
  5522. "served_from": "2019-01-03",
  5523. "served_to": null,
  5524. "source": "congress.gov/v3",
  5525. "state": "TN"
  5526. },
  5527. "R000614": {
  5528. "bioguide": "R000614",
  5529. "chamber": "House of Representatives",
  5530. "district": null,
  5531. "full_name": "Chip Roy",
  5532. "lis": null,
  5533. "party": "R",
  5534. "photo_url": "https://www.congress.gov/img/member/r000614_200.jpg",
  5535. "served_from": "2019-01-03",
  5536. "served_to": null,
  5537. "source": "congress.gov/v3",
  5538. "state": "TX"
  5539. },
  5540. "R000617": {
  5541. "bioguide": "R000617",
  5542. "chamber": "House of Representatives",
  5543. "district": null,
  5544. "full_name": "Delia C. Ramirez",
  5545. "lis": null,
  5546. "party": "D",
  5547. "photo_url": "https://www.congress.gov/img/member/684c2356333714e4aee2e1fd_200.jpg",
  5548. "served_from": "2023-01-03",
  5549. "served_to": null,
  5550. "source": "congress.gov/v3",
  5551. "state": "IL"
  5552. },
  5553. "R000618": {
  5554. "bioguide": "R000618",
  5555. "chamber": "Senate",
  5556. "district": null,
  5557. "full_name": "Pete Ricketts",
  5558. "lis": "S423",
  5559. "party": "R",
  5560. "photo_url": "https://www.congress.gov/img/member/r000618_200.jpg",
  5561. "served_from": "2023-01-03",
  5562. "served_to": null,
  5563. "source": "congress.gov/v3",
  5564. "state": "NE"
  5565. },
  5566. "R000619": {
  5567. "bioguide": "R000619",
  5568. "chamber": "House of Representatives",
  5569. "district": null,
  5570. "full_name": "Michael A. Rulli",
  5571. "lis": null,
  5572. "party": "R",
  5573. "photo_url": "https://www.congress.gov/img/member/69401dcc8cd6e06e9e3b36de_200.jpg",
  5574. "served_from": "2024-01-03",
  5575. "served_to": null,
  5576. "source": "congress.gov/v3",
  5577. "state": "OH"
  5578. },
  5579. "R000620": {
  5580. "bioguide": "R000620",
  5581. "chamber": "House of Representatives",
  5582. "district": null,
  5583. "full_name": "Luz M. Rivas",
  5584. "lis": null,
  5585. "party": "D",
  5586. "photo_url": "https://www.congress.gov/img/member/67745d860b34857ecc90916d_200.jpg",
  5587. "served_from": "2025-01-03",
  5588. "served_to": null,
  5589. "source": "congress.gov/v3",
  5590. "state": "CA"
  5591. },
  5592. "R000621": {
  5593. "bioguide": "R000621",
  5594. "chamber": "House of Representatives",
  5595. "district": null,
  5596. "full_name": "Emily Randall",
  5597. "lis": null,
  5598. "party": "D",
  5599. "photo_url": "https://www.congress.gov/img/member/67745dcf0b34857ecc909173_200.jpg",
  5600. "served_from": "2025-01-03",
  5601. "served_to": null,
  5602. "source": "congress.gov/v3",
  5603. "state": "WA"
  5604. },
  5605. "R000622": {
  5606. "bioguide": "R000622",
  5607. "chamber": "House of Representatives",
  5608. "district": null,
  5609. "full_name": "Josh Riley",
  5610. "lis": null,
  5611. "party": "D",
  5612. "photo_url": "https://www.congress.gov/img/member/67745e360b34857ecc909179_200.jpg",
  5613. "served_from": "2025-01-03",
  5614. "served_to": null,
  5615. "source": "congress.gov/v3",
  5616. "state": "NY"
  5617. },
  5618. "S000033": {
  5619. "bioguide": "S000033",
  5620. "chamber": "Senate",
  5621. "district": null,
  5622. "full_name": "Bernard Sanders",
  5623. "lis": "S313",
  5624. "party": "I",
  5625. "photo_url": "https://www.congress.gov/img/member/s000033_200.jpg",
  5626. "served_from": "1991-01-03",
  5627. "served_to": null,
  5628. "source": "congress.gov/v3",
  5629. "state": "VT"
  5630. },
  5631. "S000148": {
  5632. "bioguide": "S000148",
  5633. "chamber": "Senate",
  5634. "district": null,
  5635. "full_name": "Charles E. Schumer",
  5636. "lis": "S270",
  5637. "party": "D",
  5638. "photo_url": "https://www.congress.gov/img/member/s000148_200.jpg",
  5639. "served_from": "1981-01-03",
  5640. "served_to": null,
  5641. "source": "congress.gov/v3",
  5642. "state": "NY"
  5643. },
  5644. "S000168": {
  5645. "bioguide": "S000168",
  5646. "chamber": "House of Representatives",
  5647. "district": null,
  5648. "full_name": "Maria Elvira Salazar",
  5649. "lis": null,
  5650. "party": "R",
  5651. "photo_url": "https://www.congress.gov/img/member/s000168_200.jpg",
  5652. "served_from": "2021-01-03",
  5653. "served_to": null,
  5654. "source": "congress.gov/v3",
  5655. "state": "FL"
  5656. },
  5657. "S000185": {
  5658. "bioguide": "S000185",
  5659. "chamber": "House of Representatives",
  5660. "district": null,
  5661. "full_name": "Robert C. \"Bobby\" Scott",
  5662. "lis": null,
  5663. "party": "D",
  5664. "photo_url": "https://www.congress.gov/img/member/s000185_200.jpg",
  5665. "served_from": "1993-01-03",
  5666. "served_to": null,
  5667. "source": "congress.gov/v3",
  5668. "state": "VA"
  5669. },
  5670. "S000250": {
  5671. "bioguide": "S000250",
  5672. "chamber": "House of Representatives",
  5673. "district": null,
  5674. "full_name": "Pete Sessions",
  5675. "lis": null,
  5676. "party": "R",
  5677. "photo_url": "https://www.congress.gov/img/member/115_rp_tx_32_sessions_pete_200.jpg",
  5678. "served_from": "1997-01-03",
  5679. "served_to": null,
  5680. "source": "congress.gov/v3",
  5681. "state": "TX"
  5682. },
  5683. "S000344": {
  5684. "bioguide": "S000344",
  5685. "chamber": "House of Representatives",
  5686. "district": null,
  5687. "full_name": "Brad Sherman",
  5688. "lis": null,
  5689. "party": "D",
  5690. "photo_url": "https://www.congress.gov/img/member/s000344_200.jpg",
  5691. "served_from": "1997-01-03",
  5692. "served_to": null,
  5693. "source": "congress.gov/v3",
  5694. "state": "CA"
  5695. },
  5696. "S000510": {
  5697. "bioguide": "S000510",
  5698. "chamber": "House of Representatives",
  5699. "district": null,
  5700. "full_name": "Adam Smith",
  5701. "lis": null,
  5702. "party": "D",
  5703. "photo_url": "https://www.congress.gov/img/member/116_rp_wa_9_smith_adam_200.jpg",
  5704. "served_from": "1997-01-03",
  5705. "served_to": null,
  5706. "source": "congress.gov/v3",
  5707. "state": "WA"
  5708. },
  5709. "S000522": {
  5710. "bioguide": "S000522",
  5711. "chamber": "House of Representatives",
  5712. "district": null,
  5713. "full_name": "Christopher H. Smith",
  5714. "lis": null,
  5715. "party": "R",
  5716. "photo_url": "https://www.congress.gov/img/member/s000522_200.jpg",
  5717. "served_from": "1981-01-03",
  5718. "served_to": null,
  5719. "source": "congress.gov/v3",
  5720. "state": "NJ"
  5721. },
  5722. "S000929": {
  5723. "bioguide": "S000929",
  5724. "chamber": "House of Representatives",
  5725. "district": null,
  5726. "full_name": "Victoria Spartz",
  5727. "lis": null,
  5728. "party": "R",
  5729. "photo_url": "https://www.congress.gov/img/member/s000929_200.jpg",
  5730. "served_from": "2021-01-03",
  5731. "served_to": null,
  5732. "source": "congress.gov/v3",
  5733. "state": "IN"
  5734. },
  5735. "S001145": {
  5736. "bioguide": "S001145",
  5737. "chamber": "House of Representatives",
  5738. "district": null,
  5739. "full_name": "Janice D. Schakowsky",
  5740. "lis": null,
  5741. "party": "D",
  5742. "photo_url": "https://www.congress.gov/img/member/116_rp_il_9_schakowsky_janice_200.jpg",
  5743. "served_from": "1999-01-03",
  5744. "served_to": null,
  5745. "source": "congress.gov/v3",
  5746. "state": "IL"
  5747. },
  5748. "S001148": {
  5749. "bioguide": "S001148",
  5750. "chamber": "House of Representatives",
  5751. "district": null,
  5752. "full_name": "Michael K. Simpson",
  5753. "lis": null,
  5754. "party": "R",
  5755. "photo_url": "https://www.congress.gov/img/member/678152c81f9ad6ea6fb1eb7f_200.jpg",
  5756. "served_from": "1999-01-03",
  5757. "served_to": null,
  5758. "source": "congress.gov/v3",
  5759. "state": "ID"
  5760. },
  5761. "S001150": {
  5762. "bioguide": "S001150",
  5763. "chamber": "Senate",
  5764. "district": null,
  5765. "full_name": "Adam B. Schiff",
  5766. "lis": "S427",
  5767. "party": "D",
  5768. "photo_url": "https://www.congress.gov/img/member/677d870dfdb6cf36bbb649b3_200.jpg",
  5769. "served_from": "2001-01-03",
  5770. "served_to": null,
  5771. "source": "congress.gov/v3",
  5772. "state": "CA"
  5773. },
  5774. "S001156": {
  5775. "bioguide": "S001156",
  5776. "chamber": "House of Representatives",
  5777. "district": null,
  5778. "full_name": "Linda T. S\u00e1nchez",
  5779. "lis": null,
  5780. "party": "D",
  5781. "photo_url": "https://www.congress.gov/img/member/116_rp_ca_38_snchez_linda_200.jpg",
  5782. "served_from": "2003-01-03",
  5783. "served_to": null,
  5784. "source": "congress.gov/v3",
  5785. "state": "CA"
  5786. },
  5787. "S001157": {
  5788. "bioguide": "S001157",
  5789. "chamber": "House of Representatives",
  5790. "district": null,
  5791. "full_name": "David Scott",
  5792. "lis": null,
  5793. "party": "D",
  5794. "photo_url": "https://www.congress.gov/img/member/116_rp_ga_13_scott_david_200.jpg",
  5795. "served_from": "2003-01-03",
  5796. "served_to": "2026-01-03",
  5797. "source": "congress.gov/v3",
  5798. "state": "GA"
  5799. },
  5800. "S001159": {
  5801. "bioguide": "S001159",
  5802. "chamber": "House of Representatives",
  5803. "district": null,
  5804. "full_name": "Marilyn Strickland",
  5805. "lis": null,
  5806. "party": "D",
  5807. "photo_url": "https://www.congress.gov/img/member/s001159_200.jpg",
  5808. "served_from": "2021-01-03",
  5809. "served_to": null,
  5810. "source": "congress.gov/v3",
  5811. "state": "WA"
  5812. },
  5813. "S001172": {
  5814. "bioguide": "S001172",
  5815. "chamber": "House of Representatives",
  5816. "district": null,
  5817. "full_name": "Adrian Smith",
  5818. "lis": null,
  5819. "party": "R",
  5820. "photo_url": "https://www.congress.gov/img/member/s001172_200.jpg",
  5821. "served_from": "2007-01-03",
  5822. "served_to": null,
  5823. "source": "congress.gov/v3",
  5824. "state": "NE"
  5825. },
  5826. "S001176": {
  5827. "bioguide": "S001176",
  5828. "chamber": "House of Representatives",
  5829. "district": null,
  5830. "full_name": "Steve Scalise",
  5831. "lis": null,
  5832. "party": "R",
  5833. "photo_url": "https://www.congress.gov/img/member/s001176_200.jpg",
  5834. "served_from": "2008-01-03",
  5835. "served_to": null,
  5836. "source": "congress.gov/v3",
  5837. "state": "LA"
  5838. },
  5839. "S001181": {
  5840. "bioguide": "S001181",
  5841. "chamber": "Senate",
  5842. "district": null,
  5843. "full_name": "Jeanne Shaheen",
  5844. "lis": "S324",
  5845. "party": "D",
  5846. "photo_url": "https://www.congress.gov/img/member/s001181_200.jpg",
  5847. "served_from": "2009-01-03",
  5848. "served_to": null,
  5849. "source": "congress.gov/v3",
  5850. "state": "NH"
  5851. },
  5852. "S001183": {
  5853. "bioguide": "S001183",
  5854. "chamber": "House of Representatives",
  5855. "district": null,
  5856. "full_name": "David Schweikert",
  5857. "lis": null,
  5858. "party": "R",
  5859. "photo_url": "https://www.congress.gov/img/member/s001183_200.jpg",
  5860. "served_from": "2011-01-03",
  5861. "served_to": null,
  5862. "source": "congress.gov/v3",
  5863. "state": "AZ"
  5864. },
  5865. "S001184": {
  5866. "bioguide": "S001184",
  5867. "chamber": "Senate",
  5868. "district": null,
  5869. "full_name": "Tim Scott",
  5870. "lis": "S365",
  5871. "party": "R",
  5872. "photo_url": "https://www.congress.gov/img/member/s001184_200.jpg",
  5873. "served_from": "2011-01-03",
  5874. "served_to": null,
  5875. "source": "congress.gov/v3",
  5876. "state": "SC"
  5877. },
  5878. "S001185": {
  5879. "bioguide": "S001185",
  5880. "chamber": "House of Representatives",
  5881. "district": null,
  5882. "full_name": "Terri A. Sewell",
  5883. "lis": null,
  5884. "party": "D",
  5885. "photo_url": "https://www.congress.gov/img/member/s001185_200.jpg",
  5886. "served_from": "2011-01-03",
  5887. "served_to": null,
  5888. "source": "congress.gov/v3",
  5889. "state": "AL"
  5890. },
  5891. "S001188": {
  5892. "bioguide": "S001188",
  5893. "chamber": "House of Representatives",
  5894. "district": null,
  5895. "full_name": "Marlin A. Stutzman",
  5896. "lis": null,
  5897. "party": "R",
  5898. "photo_url": "https://www.congress.gov/img/member/67745e7e0b34857ecc90917f_200.jpg",
  5899. "served_from": "2010-01-03",
  5900. "served_to": null,
  5901. "source": "congress.gov/v3",
  5902. "state": "IN"
  5903. },
  5904. "S001189": {
  5905. "bioguide": "S001189",
  5906. "chamber": "House of Representatives",
  5907. "district": null,
  5908. "full_name": "Austin Scott",
  5909. "lis": null,
  5910. "party": "R",
  5911. "photo_url": "https://www.congress.gov/img/member/s001189_200.jpg",
  5912. "served_from": "2011-01-03",
  5913. "served_to": null,
  5914. "source": "congress.gov/v3",
  5915. "state": "GA"
  5916. },
  5917. "S001190": {
  5918. "bioguide": "S001190",
  5919. "chamber": "House of Representatives",
  5920. "district": null,
  5921. "full_name": "Bradley Scott Schneider",
  5922. "lis": null,
  5923. "party": "D",
  5924. "photo_url": "https://www.congress.gov/img/member/s001190_200.jpg",
  5925. "served_from": "2013-01-03",
  5926. "served_to": null,
  5927. "source": "congress.gov/v3",
  5928. "state": "IL"
  5929. },
  5930. "S001193": {
  5931. "bioguide": "S001193",
  5932. "chamber": "House of Representatives",
  5933. "district": null,
  5934. "full_name": "Eric Swalwell",
  5935. "lis": null,
  5936. "party": "D",
  5937. "photo_url": "https://www.congress.gov/img/member/s001193_200.jpg",
  5938. "served_from": "2013-01-03",
  5939. "served_to": "2026-01-03",
  5940. "source": "congress.gov/v3",
  5941. "state": "CA"
  5942. },
  5943. "S001194": {
  5944. "bioguide": "S001194",
  5945. "chamber": "Senate",
  5946. "district": null,
  5947. "full_name": "Brian Schatz",
  5948. "lis": "S353",
  5949. "party": "D",
  5950. "photo_url": "https://www.congress.gov/img/member/s001194_200.jpg",
  5951. "served_from": "2012-01-03",
  5952. "served_to": null,
  5953. "source": "congress.gov/v3",
  5954. "state": "HI"
  5955. },
  5956. "S001195": {
  5957. "bioguide": "S001195",
  5958. "chamber": "House of Representatives",
  5959. "district": null,
  5960. "full_name": "Jason Smith",
  5961. "lis": null,
  5962. "party": "R",
  5963. "photo_url": "https://www.congress.gov/img/member/s001195_200.jpg",
  5964. "served_from": "2013-01-03",
  5965. "served_to": null,
  5966. "source": "congress.gov/v3",
  5967. "state": "MO"
  5968. },
  5969. "S001196": {
  5970. "bioguide": "S001196",
  5971. "chamber": "House of Representatives",
  5972. "district": null,
  5973. "full_name": "Elise M. Stefanik",
  5974. "lis": null,
  5975. "party": "R",
  5976. "photo_url": "https://www.congress.gov/img/member/s001196_200.jpg",
  5977. "served_from": "2015-01-03",
  5978. "served_to": null,
  5979. "source": "congress.gov/v3",
  5980. "state": "NY"
  5981. },
  5982. "S001198": {
  5983. "bioguide": "S001198",
  5984. "chamber": "Senate",
  5985. "district": null,
  5986. "full_name": "Dan Sullivan",
  5987. "lis": "S383",
  5988. "party": "R",
  5989. "photo_url": "https://www.congress.gov/img/member/s001198_200.jpg",
  5990. "served_from": "2015-01-03",
  5991. "served_to": null,
  5992. "source": "congress.gov/v3",
  5993. "state": "AK"
  5994. },
  5995. "S001199": {
  5996. "bioguide": "S001199",
  5997. "chamber": "House of Representatives",
  5998. "district": null,
  5999. "full_name": "Lloyd Smucker",
  6000. "lis": null,
  6001. "party": "R",
  6002. "photo_url": "https://www.congress.gov/img/member/s001199_200.jpg",
  6003. "served_from": "2017-01-03",
  6004. "served_to": null,
  6005. "source": "congress.gov/v3",
  6006. "state": "PA"
  6007. },
  6008. "S001200": {
  6009. "bioguide": "S001200",
  6010. "chamber": "House of Representatives",
  6011. "district": null,
  6012. "full_name": "Darren Soto",
  6013. "lis": null,
  6014. "party": "D",
  6015. "photo_url": "https://www.congress.gov/img/member/115_rp_fl_9_soto_darren_200.jpg",
  6016. "served_from": "2017-01-03",
  6017. "served_to": null,
  6018. "source": "congress.gov/v3",
  6019. "state": "FL"
  6020. },
  6021. "S001201": {
  6022. "bioguide": "S001201",
  6023. "chamber": "House of Representatives",
  6024. "district": null,
  6025. "full_name": "Thomas R. Suozzi",
  6026. "lis": null,
  6027. "party": "D",
  6028. "photo_url": "https://www.congress.gov/img/member/116_rp_ny_3_suozzi_thomas_200.jpg",
  6029. "served_from": "2017-01-03",
  6030. "served_to": null,
  6031. "source": "congress.gov/v3",
  6032. "state": "NY"
  6033. },
  6034. "S001203": {
  6035. "bioguide": "S001203",
  6036. "chamber": "Senate",
  6037. "district": null,
  6038. "full_name": "Tina Smith",
  6039. "lis": "S394",
  6040. "party": "D",
  6041. "photo_url": "https://www.congress.gov/img/member/s001203_200.jpg",
  6042. "served_from": "2018-01-03",
  6043. "served_to": null,
  6044. "source": "congress.gov/v3",
  6045. "state": "MN"
  6046. },
  6047. "S001205": {
  6048. "bioguide": "S001205",
  6049. "chamber": "House of Representatives",
  6050. "district": null,
  6051. "full_name": "Mary Gay Scanlon",
  6052. "lis": null,
  6053. "party": "D",
  6054. "photo_url": "https://www.congress.gov/img/member/116_rp_pa_5_scanlon_mary_200.jpg",
  6055. "served_from": "2018-01-03",
  6056. "served_to": null,
  6057. "source": "congress.gov/v3",
  6058. "state": "PA"
  6059. },
  6060. "S001207": {
  6061. "bioguide": "S001207",
  6062. "chamber": "House of Representatives",
  6063. "district": null,
  6064. "full_name": "Mikie Sherrill",
  6065. "lis": null,
  6066. "party": "D",
  6067. "photo_url": "https://www.congress.gov/img/member/s001207_200.jpg",
  6068. "served_from": "2019-01-03",
  6069. "served_to": "2025-01-03",
  6070. "source": "congress.gov/v3",
  6071. "state": "NJ"
  6072. },
  6073. "S001208": {
  6074. "bioguide": "S001208",
  6075. "chamber": "Senate",
  6076. "district": null,
  6077. "full_name": "Elissa Slotkin",
  6078. "lis": "S436",
  6079. "party": "D",
  6080. "photo_url": "https://www.congress.gov/img/member/s001208_200.jpg",
  6081. "served_from": "2019-01-03",
  6082. "served_to": null,
  6083. "source": "congress.gov/v3",
  6084. "state": "MI"
  6085. },
  6086. "S001211": {
  6087. "bioguide": "S001211",
  6088. "chamber": "House of Representatives",
  6089. "district": null,
  6090. "full_name": "Greg Stanton",
  6091. "lis": null,
  6092. "party": "D",
  6093. "photo_url": "https://www.congress.gov/img/member/s001211_200.jpg",
  6094. "served_from": "2019-01-03",
  6095. "served_to": null,
  6096. "source": "congress.gov/v3",
  6097. "state": "AZ"
  6098. },
  6099. "S001212": {
  6100. "bioguide": "S001212",
  6101. "chamber": "House of Representatives",
  6102. "district": null,
  6103. "full_name": "Pete Stauber",
  6104. "lis": null,
  6105. "party": "R",
  6106. "photo_url": "https://www.congress.gov/img/member/s001212_200.jpg",
  6107. "served_from": "2019-01-03",
  6108. "served_to": null,
  6109. "source": "congress.gov/v3",
  6110. "state": "MN"
  6111. },
  6112. "S001213": {
  6113. "bioguide": "S001213",
  6114. "chamber": "House of Representatives",
  6115. "district": null,
  6116. "full_name": "Bryan Steil",
  6117. "lis": null,
  6118. "party": "R",
  6119. "photo_url": "https://www.congress.gov/img/member/s001213_200.jpg",
  6120. "served_from": "2019-01-03",
  6121. "served_to": null,
  6122. "source": "congress.gov/v3",
  6123. "state": "WI"
  6124. },
  6125. "S001214": {
  6126. "bioguide": "S001214",
  6127. "chamber": "House of Representatives",
  6128. "district": null,
  6129. "full_name": "W. Gregory Steube",
  6130. "lis": null,
  6131. "party": "R",
  6132. "photo_url": "https://www.congress.gov/img/member/s001214_200.jpg",
  6133. "served_from": "2019-01-03",
  6134. "served_to": null,
  6135. "source": "congress.gov/v3",
  6136. "state": "FL"
  6137. },
  6138. "S001215": {
  6139. "bioguide": "S001215",
  6140. "chamber": "House of Representatives",
  6141. "district": null,
  6142. "full_name": "Haley M. Stevens",
  6143. "lis": null,
  6144. "party": "D",
  6145. "photo_url": "https://www.congress.gov/img/member/s001215_200.jpg",
  6146. "served_from": "2019-01-03",
  6147. "served_to": null,
  6148. "source": "congress.gov/v3",
  6149. "state": "MI"
  6150. },
  6151. "S001216": {
  6152. "bioguide": "S001216",
  6153. "chamber": "House of Representatives",
  6154. "district": null,
  6155. "full_name": "Kim Schrier",
  6156. "lis": null,
  6157. "party": "D",
  6158. "photo_url": "https://www.congress.gov/img/member/s001216_200.jpg",
  6159. "served_from": "2019-01-03",
  6160. "served_to": null,
  6161. "source": "congress.gov/v3",
  6162. "state": "WA"
  6163. },
  6164. "S001217": {
  6165. "bioguide": "S001217",
  6166. "chamber": "Senate",
  6167. "district": null,
  6168. "full_name": "Rick Scott",
  6169. "lis": "S404",
  6170. "party": "R",
  6171. "photo_url": "https://www.congress.gov/img/member/s001217_200.jpg",
  6172. "served_from": "2019-01-03",
  6173. "served_to": null,
  6174. "source": "congress.gov/v3",
  6175. "state": "FL"
  6176. },
  6177. "S001218": {
  6178. "bioguide": "S001218",
  6179. "chamber": "House of Representatives",
  6180. "district": null,
  6181. "full_name": "Melanie A. Stansbury",
  6182. "lis": null,
  6183. "party": "D",
  6184. "photo_url": "https://www.congress.gov/img/member/s001218_200.jpg",
  6185. "served_from": "2021-01-03",
  6186. "served_to": null,
  6187. "source": "congress.gov/v3",
  6188. "state": "NM"
  6189. },
  6190. "S001220": {
  6191. "bioguide": "S001220",
  6192. "chamber": "House of Representatives",
  6193. "district": null,
  6194. "full_name": "Dale W. Strong",
  6195. "lis": null,
  6196. "party": "R",
  6197. "photo_url": "https://www.congress.gov/img/member/s001220_200.jpg",
  6198. "served_from": "2023-01-03",
  6199. "served_to": null,
  6200. "source": "congress.gov/v3",
  6201. "state": "AL"
  6202. },
  6203. "S001221": {
  6204. "bioguide": "S001221",
  6205. "chamber": "House of Representatives",
  6206. "district": null,
  6207. "full_name": "Hillary J. Scholten",
  6208. "lis": null,
  6209. "party": "D",
  6210. "photo_url": "https://www.congress.gov/img/member/s001221_200.jpg",
  6211. "served_from": "2023-01-03",
  6212. "served_to": null,
  6213. "source": "congress.gov/v3",
  6214. "state": "MI"
  6215. },
  6216. "S001223": {
  6217. "bioguide": "S001223",
  6218. "chamber": "House of Representatives",
  6219. "district": null,
  6220. "full_name": "Emilia Strong Sykes",
  6221. "lis": null,
  6222. "party": "D",
  6223. "photo_url": "https://www.congress.gov/img/member/s001223_200.jpg",
  6224. "served_from": "2023-01-03",
  6225. "served_to": null,
  6226. "source": "congress.gov/v3",
  6227. "state": "OH"
  6228. },
  6229. "S001224": {
  6230. "bioguide": "S001224",
  6231. "chamber": "House of Representatives",
  6232. "district": null,
  6233. "full_name": "Keith Self",
  6234. "lis": null,
  6235. "party": "R",
  6236. "photo_url": "https://www.congress.gov/img/member/s001224_200.jpg",
  6237. "served_from": "2023-01-03",
  6238. "served_to": null,
  6239. "source": "congress.gov/v3",
  6240. "state": "TX"
  6241. },
  6242. "S001225": {
  6243. "bioguide": "S001225",
  6244. "chamber": "House of Representatives",
  6245. "district": null,
  6246. "full_name": "Eric Sorensen",
  6247. "lis": null,
  6248. "party": "D",
  6249. "photo_url": "https://www.congress.gov/img/member/s001225_200.jpg",
  6250. "served_from": "2023-01-03",
  6251. "served_to": null,
  6252. "source": "congress.gov/v3",
  6253. "state": "IL"
  6254. },
  6255. "S001226": {
  6256. "bioguide": "S001226",
  6257. "chamber": "House of Representatives",
  6258. "district": null,
  6259. "full_name": "Andrea Salinas",
  6260. "lis": null,
  6261. "party": "D",
  6262. "photo_url": "https://www.congress.gov/img/member/s001226_200.jpg",
  6263. "served_from": "2023-01-03",
  6264. "served_to": null,
  6265. "source": "congress.gov/v3",
  6266. "state": "OR"
  6267. },
  6268. "S001227": {
  6269. "bioguide": "S001227",
  6270. "chamber": "Senate",
  6271. "district": null,
  6272. "full_name": "Eric Schmitt",
  6273. "lis": "S420",
  6274. "party": "R",
  6275. "photo_url": "https://www.congress.gov/img/member/b66a0806e77f63e862391b15a0b1f753_200.jpg",
  6276. "served_from": "2023-01-03",
  6277. "served_to": null,
  6278. "source": "congress.gov/v3",
  6279. "state": "MO"
  6280. },
  6281. "S001228": {
  6282. "bioguide": "S001228",
  6283. "chamber": "House of Representatives",
  6284. "district": null,
  6285. "full_name": "Derek Schmidt",
  6286. "lis": null,
  6287. "party": "R",
  6288. "photo_url": "https://www.congress.gov/img/member/67745ec50b34857ecc909185_200.jpg",
  6289. "served_from": "2025-01-03",
  6290. "served_to": null,
  6291. "source": "congress.gov/v3",
  6292. "state": "KS"
  6293. },
  6294. "S001229": {
  6295. "bioguide": "S001229",
  6296. "chamber": "House of Representatives",
  6297. "district": null,
  6298. "full_name": "Jefferson Shreve",
  6299. "lis": null,
  6300. "party": "R",
  6301. "photo_url": "https://www.congress.gov/img/member/67745f0e0b34857ecc90918b_200.jpg",
  6302. "served_from": "2025-01-03",
  6303. "served_to": null,
  6304. "source": "congress.gov/v3",
  6305. "state": "IN"
  6306. },
  6307. "S001230": {
  6308. "bioguide": "S001230",
  6309. "chamber": "House of Representatives",
  6310. "district": null,
  6311. "full_name": "Suhas Subramanyam",
  6312. "lis": null,
  6313. "party": "D",
  6314. "photo_url": "https://www.congress.gov/img/member/6797be8bc75fbc6f720e476a_200.jpg",
  6315. "served_from": "2025-01-03",
  6316. "served_to": null,
  6317. "source": "congress.gov/v3",
  6318. "state": "VA"
  6319. },
  6320. "S001231": {
  6321. "bioguide": "S001231",
  6322. "chamber": "House of Representatives",
  6323. "district": null,
  6324. "full_name": "Lateefah Simon",
  6325. "lis": null,
  6326. "party": "D",
  6327. "photo_url": "https://www.congress.gov/img/member/67745f940b34857ecc909197_200.jpg",
  6328. "served_from": "2025-01-03",
  6329. "served_to": null,
  6330. "source": "congress.gov/v3",
  6331. "state": "CA"
  6332. },
  6333. "S001232": {
  6334. "bioguide": "S001232",
  6335. "chamber": "Senate",
  6336. "district": null,
  6337. "full_name": "Tim Sheehy",
  6338. "lis": "S435",
  6339. "party": "R",
  6340. "photo_url": "https://www.congress.gov/img/member/677d8231fdb6cf36bbb6498b_200.jpg",
  6341. "served_from": "2025-01-03",
  6342. "served_to": null,
  6343. "source": "congress.gov/v3",
  6344. "state": "MT"
  6345. },
  6346. "T000165": {
  6347. "bioguide": "T000165",
  6348. "chamber": "House of Representatives",
  6349. "district": null,
  6350. "full_name": "Thomas P. Tiffany",
  6351. "lis": null,
  6352. "party": "R",
  6353. "photo_url": "https://www.congress.gov/img/member/t000165_200.jpg",
  6354. "served_from": "2020-01-03",
  6355. "served_to": null,
  6356. "source": "congress.gov/v3",
  6357. "state": "WI"
  6358. },
  6359. "T000193": {
  6360. "bioguide": "T000193",
  6361. "chamber": "House of Representatives",
  6362. "district": null,
  6363. "full_name": "Bennie G. Thompson",
  6364. "lis": null,
  6365. "party": "D",
  6366. "photo_url": "https://www.congress.gov/img/member/t000193_200.jpg",
  6367. "served_from": "1993-01-03",
  6368. "served_to": null,
  6369. "source": "congress.gov/v3",
  6370. "state": "MS"
  6371. },
  6372. "T000250": {
  6373. "bioguide": "T000250",
  6374. "chamber": "Senate",
  6375. "district": null,
  6376. "full_name": "John Thune",
  6377. "lis": "S303",
  6378. "party": "R",
  6379. "photo_url": "https://www.congress.gov/img/member/t000250_200.jpg",
  6380. "served_from": "1997-01-03",
  6381. "served_to": null,
  6382. "source": "congress.gov/v3",
  6383. "state": "SD"
  6384. },
  6385. "T000278": {
  6386. "bioguide": "T000278",
  6387. "chamber": "Senate",
  6388. "district": null,
  6389. "full_name": "Tommy Tuberville",
  6390. "lis": "S412",
  6391. "party": "R",
  6392. "photo_url": "https://www.congress.gov/img/member/t000278_200.jpg",
  6393. "served_from": "2021-01-03",
  6394. "served_to": null,
  6395. "source": "congress.gov/v3",
  6396. "state": "AL"
  6397. },
  6398. "T000460": {
  6399. "bioguide": "T000460",
  6400. "chamber": "House of Representatives",
  6401. "district": null,
  6402. "full_name": "Mike Thompson",
  6403. "lis": null,
  6404. "party": "D",
  6405. "photo_url": "https://www.congress.gov/img/member/116_rp_ca_5_thompson_mike_200.jpg",
  6406. "served_from": "1999-01-03",
  6407. "served_to": null,
  6408. "source": "congress.gov/v3",
  6409. "state": "CA"
  6410. },
  6411. "T000463": {
  6412. "bioguide": "T000463",
  6413. "chamber": "House of Representatives",
  6414. "district": null,
  6415. "full_name": "Michael R. Turner",
  6416. "lis": null,
  6417. "party": "R",
  6418. "photo_url": "https://www.congress.gov/img/member/68014c674e51529406f18e56_200.jpg",
  6419. "served_from": "2003-01-03",
  6420. "served_to": null,
  6421. "source": "congress.gov/v3",
  6422. "state": "OH"
  6423. },
  6424. "T000467": {
  6425. "bioguide": "T000467",
  6426. "chamber": "House of Representatives",
  6427. "district": null,
  6428. "full_name": "Glenn Thompson",
  6429. "lis": null,
  6430. "party": "R",
  6431. "photo_url": "https://www.congress.gov/img/member/115_rp_pa_5_thompson_glenn_200.jpg",
  6432. "served_from": "2009-01-03",
  6433. "served_to": null,
  6434. "source": "congress.gov/v3",
  6435. "state": "PA"
  6436. },
  6437. "T000468": {
  6438. "bioguide": "T000468",
  6439. "chamber": "House of Representatives",
  6440. "district": null,
  6441. "full_name": "Dina Titus",
  6442. "lis": null,
  6443. "party": "D",
  6444. "photo_url": "https://www.congress.gov/img/member/6809296b6c2e6631263de728_200.jpg",
  6445. "served_from": "2009-01-03",
  6446. "served_to": null,
  6447. "source": "congress.gov/v3",
  6448. "state": "NV"
  6449. },
  6450. "T000469": {
  6451. "bioguide": "T000469",
  6452. "chamber": "House of Representatives",
  6453. "district": null,
  6454. "full_name": "Paul Tonko",
  6455. "lis": null,
  6456. "party": "D",
  6457. "photo_url": "https://www.congress.gov/img/member/t000469_200.jpg",
  6458. "served_from": "2009-01-03",
  6459. "served_to": null,
  6460. "source": "congress.gov/v3",
  6461. "state": "NY"
  6462. },
  6463. "T000472": {
  6464. "bioguide": "T000472",
  6465. "chamber": "House of Representatives",
  6466. "district": null,
  6467. "full_name": "Mark Takano",
  6468. "lis": null,
  6469. "party": "D",
  6470. "photo_url": "https://www.congress.gov/img/member/t000472_200.jpg",
  6471. "served_from": "2013-01-03",
  6472. "served_to": null,
  6473. "source": "congress.gov/v3",
  6474. "state": "CA"
  6475. },
  6476. "T000474": {
  6477. "bioguide": "T000474",
  6478. "chamber": "House of Representatives",
  6479. "district": null,
  6480. "full_name": "Norma J. Torres",
  6481. "lis": null,
  6482. "party": "D",
  6483. "photo_url": "https://www.congress.gov/img/member/t000474_200.jpg",
  6484. "served_from": "2015-01-03",
  6485. "served_to": null,
  6486. "source": "congress.gov/v3",
  6487. "state": "CA"
  6488. },
  6489. "T000476": {
  6490. "bioguide": "T000476",
  6491. "chamber": "Senate",
  6492. "district": null,
  6493. "full_name": "Thomas Tillis",
  6494. "lis": "S384",
  6495. "party": "R",
  6496. "photo_url": "https://www.congress.gov/img/member/t000476_200.jpg",
  6497. "served_from": "2015-01-03",
  6498. "served_to": null,
  6499. "source": "congress.gov/v3",
  6500. "state": "NC"
  6501. },
  6502. "T000478": {
  6503. "bioguide": "T000478",
  6504. "chamber": "House of Representatives",
  6505. "district": null,
  6506. "full_name": "Claudia Tenney",
  6507. "lis": null,
  6508. "party": "R",
  6509. "photo_url": "https://www.congress.gov/img/member/t000478_200.jpg",
  6510. "served_from": "2017-01-03",
  6511. "served_to": null,
  6512. "source": "congress.gov/v3",
  6513. "state": "NY"
  6514. },
  6515. "T000480": {
  6516. "bioguide": "T000480",
  6517. "chamber": "House of Representatives",
  6518. "district": null,
  6519. "full_name": "William R. Timmons",
  6520. "lis": null,
  6521. "party": "R",
  6522. "photo_url": "https://www.congress.gov/img/member/t000480_200.jpg",
  6523. "served_from": "2019-01-03",
  6524. "served_to": null,
  6525. "source": "congress.gov/v3",
  6526. "state": "SC"
  6527. },
  6528. "T000481": {
  6529. "bioguide": "T000481",
  6530. "chamber": "House of Representatives",
  6531. "district": null,
  6532. "full_name": "Rashida Tlaib",
  6533. "lis": null,
  6534. "party": "D",
  6535. "photo_url": "https://www.congress.gov/img/member/t000481_200.jpg",
  6536. "served_from": "2019-01-03",
  6537. "served_to": null,
  6538. "source": "congress.gov/v3",
  6539. "state": "MI"
  6540. },
  6541. "T000482": {
  6542. "bioguide": "T000482",
  6543. "chamber": "House of Representatives",
  6544. "district": null,
  6545. "full_name": "Lori Trahan",
  6546. "lis": null,
  6547. "party": "D",
  6548. "photo_url": "https://www.congress.gov/img/member/t000482_200.jpg",
  6549. "served_from": "2019-01-03",
  6550. "served_to": null,
  6551. "source": "congress.gov/v3",
  6552. "state": "MA"
  6553. },
  6554. "T000486": {
  6555. "bioguide": "T000486",
  6556. "chamber": "House of Representatives",
  6557. "district": null,
  6558. "full_name": "Ritchie Torres",
  6559. "lis": null,
  6560. "party": "D",
  6561. "photo_url": "https://www.congress.gov/img/member/t000486_200.jpg",
  6562. "served_from": "2021-01-03",
  6563. "served_to": null,
  6564. "source": "congress.gov/v3",
  6565. "state": "NY"
  6566. },
  6567. "T000487": {
  6568. "bioguide": "T000487",
  6569. "chamber": "House of Representatives",
  6570. "district": null,
  6571. "full_name": "Jill N. Tokuda",
  6572. "lis": null,
  6573. "party": "D",
  6574. "photo_url": "https://www.congress.gov/img/member/t000487_200.jpg",
  6575. "served_from": "2023-01-03",
  6576. "served_to": null,
  6577. "source": "congress.gov/v3",
  6578. "state": "HI"
  6579. },
  6580. "T000488": {
  6581. "bioguide": "T000488",
  6582. "chamber": "House of Representatives",
  6583. "district": null,
  6584. "full_name": "Shri Thanedar",
  6585. "lis": null,
  6586. "party": "D",
  6587. "photo_url": "https://www.congress.gov/img/member/68122bf2246d1b6bd8d9f6a2_200.jpg",
  6588. "served_from": "2023-01-03",
  6589. "served_to": null,
  6590. "source": "congress.gov/v3",
  6591. "state": "MI"
  6592. },
  6593. "T000489": {
  6594. "bioguide": "T000489",
  6595. "chamber": "House of Representatives",
  6596. "district": null,
  6597. "full_name": "Sylvester Turner",
  6598. "lis": null,
  6599. "party": "D",
  6600. "photo_url": "https://www.congress.gov/img/member/67745fdc0b34857ecc90919d_200.jpg",
  6601. "served_from": "2025-01-03",
  6602. "served_to": "2025-01-03",
  6603. "source": "congress.gov/v3",
  6604. "state": "TX"
  6605. },
  6606. "T000490": {
  6607. "bioguide": "T000490",
  6608. "chamber": "House of Representatives",
  6609. "district": null,
  6610. "full_name": "David J. Taylor",
  6611. "lis": null,
  6612. "party": "R",
  6613. "photo_url": "https://www.congress.gov/img/member/677460190b34857ecc9091a3_200.jpg",
  6614. "served_from": "2025-01-03",
  6615. "served_to": null,
  6616. "source": "congress.gov/v3",
  6617. "state": "OH"
  6618. },
  6619. "T000491": {
  6620. "bioguide": "T000491",
  6621. "chamber": "House of Representatives",
  6622. "district": null,
  6623. "full_name": "Derek Tran",
  6624. "lis": null,
  6625. "party": "D",
  6626. "photo_url": "https://www.congress.gov/img/member/6774606d0b34857ecc9091a9_200.jpg",
  6627. "served_from": "2025-01-03",
  6628. "served_to": null,
  6629. "source": "congress.gov/v3",
  6630. "state": "CA"
  6631. },
  6632. "U000040": {
  6633. "bioguide": "U000040",
  6634. "chamber": "House of Representatives",
  6635. "district": null,
  6636. "full_name": "Lauren Underwood",
  6637. "lis": null,
  6638. "party": "D",
  6639. "photo_url": "https://www.congress.gov/img/member/u000040_200.jpg",
  6640. "served_from": "2019-01-03",
  6641. "served_to": null,
  6642. "source": "congress.gov/v3",
  6643. "state": "IL"
  6644. },
  6645. "V000081": {
  6646. "bioguide": "V000081",
  6647. "chamber": "House of Representatives",
  6648. "district": null,
  6649. "full_name": "Nydia M. Vel\u00e1zquez",
  6650. "lis": null,
  6651. "party": "D",
  6652. "photo_url": "https://www.congress.gov/img/member/v000081_200.jpg",
  6653. "served_from": "1993-01-03",
  6654. "served_to": null,
  6655. "source": "congress.gov/v3",
  6656. "state": "NY"
  6657. },
  6658. "V000128": {
  6659. "bioguide": "V000128",
  6660. "chamber": "Senate",
  6661. "district": null,
  6662. "full_name": "Chris Van Hollen",
  6663. "lis": "S390",
  6664. "party": "D",
  6665. "photo_url": "https://www.congress.gov/img/member/v000128_200.jpg",
  6666. "served_from": "2003-01-03",
  6667. "served_to": null,
  6668. "source": "congress.gov/v3",
  6669. "state": "MD"
  6670. },
  6671. "V000129": {
  6672. "bioguide": "V000129",
  6673. "chamber": "House of Representatives",
  6674. "district": null,
  6675. "full_name": "David G. Valadao",
  6676. "lis": null,
  6677. "party": "R",
  6678. "photo_url": "https://www.congress.gov/img/member/v000129_200.jpg",
  6679. "served_from": "2013-01-03",
  6680. "served_to": null,
  6681. "source": "congress.gov/v3",
  6682. "state": "CA"
  6683. },
  6684. "V000130": {
  6685. "bioguide": "V000130",
  6686. "chamber": "House of Representatives",
  6687. "district": null,
  6688. "full_name": "Juan Vargas",
  6689. "lis": null,
  6690. "party": "D",
  6691. "photo_url": "https://www.congress.gov/img/member/v000130_200.jpg",
  6692. "served_from": "2013-01-03",
  6693. "served_to": null,
  6694. "source": "congress.gov/v3",
  6695. "state": "CA"
  6696. },
  6697. "V000131": {
  6698. "bioguide": "V000131",
  6699. "chamber": "House of Representatives",
  6700. "district": null,
  6701. "full_name": "Marc A. Veasey",
  6702. "lis": null,
  6703. "party": "D",
  6704. "photo_url": "https://www.congress.gov/img/member/v000131_200.jpg",
  6705. "served_from": "2013-01-03",
  6706. "served_to": null,
  6707. "source": "congress.gov/v3",
  6708. "state": "TX"
  6709. },
  6710. "V000133": {
  6711. "bioguide": "V000133",
  6712. "chamber": "House of Representatives",
  6713. "district": null,
  6714. "full_name": "Jefferson Van Drew",
  6715. "lis": null,
  6716. "party": "R",
  6717. "photo_url": "https://www.congress.gov/img/member/67c0c39d53fe81a4b3c0cac1_200.jpg",
  6718. "served_from": "2019-01-03",
  6719. "served_to": null,
  6720. "source": "congress.gov/v3",
  6721. "state": "NJ"
  6722. },
  6723. "V000134": {
  6724. "bioguide": "V000134",
  6725. "chamber": "House of Representatives",
  6726. "district": null,
  6727. "full_name": "Beth Van Duyne",
  6728. "lis": null,
  6729. "party": "R",
  6730. "photo_url": "https://www.congress.gov/img/member/677461060b34857ecc9091af_200.jpg",
  6731. "served_from": "2021-01-03",
  6732. "served_to": null,
  6733. "source": "congress.gov/v3",
  6734. "state": "TX"
  6735. },
  6736. "V000135": {
  6737. "bioguide": "V000135",
  6738. "chamber": "House of Representatives",
  6739. "district": null,
  6740. "full_name": "Derrick Van Orden",
  6741. "lis": null,
  6742. "party": "R",
  6743. "photo_url": "https://www.congress.gov/img/member/v000135_200.jpg",
  6744. "served_from": "2023-01-03",
  6745. "served_to": null,
  6746. "source": "congress.gov/v3",
  6747. "state": "WI"
  6748. },
  6749. "V000136": {
  6750. "bioguide": "V000136",
  6751. "chamber": "House of Representatives",
  6752. "district": null,
  6753. "full_name": "Gabe Vasquez",
  6754. "lis": null,
  6755. "party": "D",
  6756. "photo_url": "https://www.congress.gov/img/member/v000136_200.jpg",
  6757. "served_from": "2023-01-03",
  6758. "served_to": null,
  6759. "source": "congress.gov/v3",
  6760. "state": "NM"
  6761. },
  6762. "V000137": {
  6763. "bioguide": "V000137",
  6764. "chamber": "Senate",
  6765. "district": null,
  6766. "full_name": "J. D. Vance",
  6767. "lis": "S421",
  6768. "party": "R",
  6769. "photo_url": "https://www.congress.gov/img/member/v000137_200.jpg",
  6770. "served_from": "2023-01-03",
  6771. "served_to": "2025-01-03",
  6772. "source": "congress.gov/v3",
  6773. "state": "OH"
  6774. },
  6775. "V000138": {
  6776. "bioguide": "V000138",
  6777. "chamber": "House of Representatives",
  6778. "district": null,
  6779. "full_name": "Eugene Simon Vindman",
  6780. "lis": null,
  6781. "party": "D",
  6782. "photo_url": "https://www.congress.gov/img/member/6774617a0b34857ecc9091b5_200.jpg",
  6783. "served_from": "2025-01-03",
  6784. "served_to": null,
  6785. "source": "congress.gov/v3",
  6786. "state": "VA"
  6787. },
  6788. "V000139": {
  6789. "bioguide": "V000139",
  6790. "chamber": "House of Representatives",
  6791. "district": null,
  6792. "full_name": "Matt Van Epps",
  6793. "lis": null,
  6794. "party": "R",
  6795. "photo_url": "https://www.congress.gov/img/member/6931b7d5f478c0f1228e9abe_200.jpg",
  6796. "served_from": "2025-01-03",
  6797. "served_to": null,
  6798. "source": "congress.gov/v3",
  6799. "state": "TN"
  6800. },
  6801. "W000187": {
  6802. "bioguide": "W000187",
  6803. "chamber": "House of Representatives",
  6804. "district": null,
  6805. "full_name": "Maxine Waters",
  6806. "lis": null,
  6807. "party": "D",
  6808. "photo_url": "https://www.congress.gov/img/member/w000187_200.jpg",
  6809. "served_from": "1991-01-03",
  6810. "served_to": null,
  6811. "source": "congress.gov/v3",
  6812. "state": "CA"
  6813. },
  6814. "W000437": {
  6815. "bioguide": "W000437",
  6816. "chamber": "Senate",
  6817. "district": null,
  6818. "full_name": "Roger F. Wicker",
  6819. "lis": "S318",
  6820. "party": "R",
  6821. "photo_url": "https://www.congress.gov/img/member/f49ac425119375e9fe6a075762734079_200.jpg",
  6822. "served_from": "1995-01-03",
  6823. "served_to": null,
  6824. "source": "congress.gov/v3",
  6825. "state": "MS"
  6826. },
  6827. "W000779": {
  6828. "bioguide": "W000779",
  6829. "chamber": "Senate",
  6830. "district": null,
  6831. "full_name": "Ron Wyden",
  6832. "lis": "S247",
  6833. "party": "D",
  6834. "photo_url": "https://www.congress.gov/img/member/w000779_200.jpg",
  6835. "served_from": "1981-01-03",
  6836. "served_to": null,
  6837. "source": "congress.gov/v3",
  6838. "state": "OR"
  6839. },
  6840. "W000788": {
  6841. "bioguide": "W000788",
  6842. "chamber": "House of Representatives",
  6843. "district": null,
  6844. "full_name": "Nikema Williams",
  6845. "lis": null,
  6846. "party": "D",
  6847. "photo_url": "https://www.congress.gov/img/member/w000788_200.jpg",
  6848. "served_from": "2021-01-03",
  6849. "served_to": null,
  6850. "source": "congress.gov/v3",
  6851. "state": "GA"
  6852. },
  6853. "W000790": {
  6854. "bioguide": "W000790",
  6855. "chamber": "Senate",
  6856. "district": null,
  6857. "full_name": "Raphael G. Warnock",
  6858. "lis": "S415",
  6859. "party": "D",
  6860. "photo_url": "https://www.congress.gov/img/member/w000790_200.jpg",
  6861. "served_from": "2021-01-03",
  6862. "served_to": null,
  6863. "source": "congress.gov/v3",
  6864. "state": "GA"
  6865. },
  6866. "W000795": {
  6867. "bioguide": "W000795",
  6868. "chamber": "House of Representatives",
  6869. "district": null,
  6870. "full_name": "Joe Wilson",
  6871. "lis": null,
  6872. "party": "R",
  6873. "photo_url": "https://www.congress.gov/img/member/116_rp_sc_2_wilson_joe_200.jpg",
  6874. "served_from": "2001-01-03",
  6875. "served_to": null,
  6876. "source": "congress.gov/v3",
  6877. "state": "SC"
  6878. },
  6879. "W000797": {
  6880. "bioguide": "W000797",
  6881. "chamber": "House of Representatives",
  6882. "district": null,
  6883. "full_name": "Debbie Wasserman Schultz",
  6884. "lis": null,
  6885. "party": "D",
  6886. "photo_url": "https://www.congress.gov/img/member/116_rp_fl_23_wassermanschultz_debbie_200.jpg",
  6887. "served_from": "2005-01-03",
  6888. "served_to": null,
  6889. "source": "congress.gov/v3",
  6890. "state": "FL"
  6891. },
  6892. "W000798": {
  6893. "bioguide": "W000798",
  6894. "chamber": "House of Representatives",
  6895. "district": null,
  6896. "full_name": "Tim Walberg",
  6897. "lis": null,
  6898. "party": "R",
  6899. "photo_url": "https://www.congress.gov/img/member/w000798_200.jpg",
  6900. "served_from": "2007-01-03",
  6901. "served_to": null,
  6902. "source": "congress.gov/v3",
  6903. "state": "MI"
  6904. },
  6905. "W000800": {
  6906. "bioguide": "W000800",
  6907. "chamber": "Senate",
  6908. "district": null,
  6909. "full_name": "Peter Welch",
  6910. "lis": "S422",
  6911. "party": "D",
  6912. "photo_url": "https://www.congress.gov/img/member/fd3cb364b8bf93c25834cff750637802_200.jpg",
  6913. "served_from": "2007-01-03",
  6914. "served_to": null,
  6915. "source": "congress.gov/v3",
  6916. "state": "VT"
  6917. },
  6918. "W000802": {
  6919. "bioguide": "W000802",
  6920. "chamber": "Senate",
  6921. "district": null,
  6922. "full_name": "Sheldon Whitehouse",
  6923. "lis": "S316",
  6924. "party": "D",
  6925. "photo_url": "https://www.congress.gov/img/member/w000802_200.jpg",
  6926. "served_from": "2007-01-03",
  6927. "served_to": null,
  6928. "source": "congress.gov/v3",
  6929. "state": "RI"
  6930. },
  6931. "W000804": {
  6932. "bioguide": "W000804",
  6933. "chamber": "House of Representatives",
  6934. "district": null,
  6935. "full_name": "Robert J. Wittman",
  6936. "lis": null,
  6937. "party": "R",
  6938. "photo_url": "https://www.congress.gov/img/member/w000804_200.jpg",
  6939. "served_from": "2007-01-03",
  6940. "served_to": null,
  6941. "source": "congress.gov/v3",
  6942. "state": "VA"
  6943. },
  6944. "W000805": {
  6945. "bioguide": "W000805",
  6946. "chamber": "Senate",
  6947. "district": null,
  6948. "full_name": "Mark R. Warner",
  6949. "lis": "S327",
  6950. "party": "D",
  6951. "photo_url": "https://www.congress.gov/img/member/w000805_200.jpg",
  6952. "served_from": "2009-01-03",
  6953. "served_to": null,
  6954. "source": "congress.gov/v3",
  6955. "state": "VA"
  6956. },
  6957. "W000806": {
  6958. "bioguide": "W000806",
  6959. "chamber": "House of Representatives",
  6960. "district": null,
  6961. "full_name": "Daniel Webster",
  6962. "lis": null,
  6963. "party": "R",
  6964. "photo_url": "https://www.congress.gov/img/member/w000806_200.jpg",
  6965. "served_from": "2011-01-03",
  6966. "served_to": null,
  6967. "source": "congress.gov/v3",
  6968. "state": "FL"
  6969. },
  6970. "W000808": {
  6971. "bioguide": "W000808",
  6972. "chamber": "House of Representatives",
  6973. "district": null,
  6974. "full_name": "Frederica S. Wilson",
  6975. "lis": null,
  6976. "party": "D",
  6977. "photo_url": "https://www.congress.gov/img/member/w000808_200.jpg",
  6978. "served_from": "2011-01-03",
  6979. "served_to": null,
  6980. "source": "congress.gov/v3",
  6981. "state": "FL"
  6982. },
  6983. "W000809": {
  6984. "bioguide": "W000809",
  6985. "chamber": "House of Representatives",
  6986. "district": null,
  6987. "full_name": "Steve Womack",
  6988. "lis": null,
  6989. "party": "R",
  6990. "photo_url": "https://www.congress.gov/img/member/117_rp_ar_3_womack_steve_200.jpg",
  6991. "served_from": "2011-01-03",
  6992. "served_to": null,
  6993. "source": "congress.gov/v3",
  6994. "state": "AR"
  6995. },
  6996. "W000812": {
  6997. "bioguide": "W000812",
  6998. "chamber": "House of Representatives",
  6999. "district": null,
  7000. "full_name": "Ann Wagner",
  7001. "lis": null,
  7002. "party": "R",
  7003. "photo_url": "https://www.congress.gov/img/member/695fc654ddd5f76cbbad2f67_200.jpg",
  7004. "served_from": "2013-01-03",
  7005. "served_to": null,
  7006. "source": "congress.gov/v3",
  7007. "state": "MO"
  7008. },
  7009. "W000814": {
  7010. "bioguide": "W000814",
  7011. "chamber": "House of Representatives",
  7012. "district": null,
  7013. "full_name": "Randy K. Sr. Weber",
  7014. "lis": null,
  7015. "party": "R",
  7016. "photo_url": "https://www.congress.gov/img/member/w000814_200.jpg",
  7017. "served_from": "2013-01-03",
  7018. "served_to": null,
  7019. "source": "congress.gov/v3",
  7020. "state": "TX"
  7021. },
  7022. "W000816": {
  7023. "bioguide": "W000816",
  7024. "chamber": "House of Representatives",
  7025. "district": null,
  7026. "full_name": "Roger Williams",
  7027. "lis": null,
  7028. "party": "R",
  7029. "photo_url": "https://www.congress.gov/img/member/w000816_200.jpg",
  7030. "served_from": "2013-01-03",
  7031. "served_to": null,
  7032. "source": "congress.gov/v3",
  7033. "state": "TX"
  7034. },
  7035. "W000817": {
  7036. "bioguide": "W000817",
  7037. "chamber": "Senate",
  7038. "district": null,
  7039. "full_name": "Elizabeth Warren",
  7040. "lis": "S366",
  7041. "party": "D",
  7042. "photo_url": "https://www.congress.gov/img/member/w000817_200.jpg",
  7043. "served_from": "2013-01-03",
  7044. "served_to": null,
  7045. "source": "congress.gov/v3",
  7046. "state": "MA"
  7047. },
  7048. "W000821": {
  7049. "bioguide": "W000821",
  7050. "chamber": "House of Representatives",
  7051. "district": null,
  7052. "full_name": "Bruce Westerman",
  7053. "lis": null,
  7054. "party": "R",
  7055. "photo_url": "https://www.congress.gov/img/member/w000821_200.jpg",
  7056. "served_from": "2015-01-03",
  7057. "served_to": null,
  7058. "source": "congress.gov/v3",
  7059. "state": "AR"
  7060. },
  7061. "W000822": {
  7062. "bioguide": "W000822",
  7063. "chamber": "House of Representatives",
  7064. "district": null,
  7065. "full_name": "Bonnie Watson Coleman",
  7066. "lis": null,
  7067. "party": "D",
  7068. "photo_url": "https://www.congress.gov/img/member/w000822_200.jpg",
  7069. "served_from": "2015-01-03",
  7070. "served_to": null,
  7071. "source": "congress.gov/v3",
  7072. "state": "NJ"
  7073. },
  7074. "W000823": {
  7075. "bioguide": "W000823",
  7076. "chamber": "House of Representatives",
  7077. "district": null,
  7078. "full_name": "Michael Waltz",
  7079. "lis": null,
  7080. "party": "R",
  7081. "photo_url": "https://www.congress.gov/img/member/w000823_200.jpg",
  7082. "served_from": "2019-01-03",
  7083. "served_to": "2025-01-03",
  7084. "source": "congress.gov/v3",
  7085. "state": "FL"
  7086. },
  7087. "W000829": {
  7088. "bioguide": "W000829",
  7089. "chamber": "House of Representatives",
  7090. "district": null,
  7091. "full_name": "Tony Wied",
  7092. "lis": null,
  7093. "party": "R",
  7094. "photo_url": "https://www.congress.gov/img/member/6734b6724c72e343a6aff9e6_200.jpg",
  7095. "served_from": "2024-01-03",
  7096. "served_to": null,
  7097. "source": "congress.gov/v3",
  7098. "state": "WI"
  7099. },
  7100. "W000830": {
  7101. "bioguide": "W000830",
  7102. "chamber": "House of Representatives",
  7103. "district": null,
  7104. "full_name": "George Whitesides",
  7105. "lis": null,
  7106. "party": "D",
  7107. "photo_url": "https://www.congress.gov/img/member/68dc43db199559bad714973d_200.jpg",
  7108. "served_from": "2025-01-03",
  7109. "served_to": null,
  7110. "source": "congress.gov/v3",
  7111. "state": "CA"
  7112. },
  7113. "W000831": {
  7114. "bioguide": "W000831",
  7115. "chamber": "House of Representatives",
  7116. "district": null,
  7117. "full_name": "James R. Walkinshaw",
  7118. "lis": null,
  7119. "party": "D",
  7120. "photo_url": "https://www.congress.gov/img/member/68c1bd4ca929c5b98220e069_200.jpg",
  7121. "served_from": "2025-01-03",
  7122. "served_to": null,
  7123. "source": "congress.gov/v3",
  7124. "state": "VA"
  7125. },
  7126. "Y000064": {
  7127. "bioguide": "Y000064",
  7128. "chamber": "Senate",
  7129. "district": null,
  7130. "full_name": "Todd Young",
  7131. "lis": "S391",
  7132. "party": "R",
  7133. "photo_url": "https://www.congress.gov/img/member/y000064_200.jpg",
  7134. "served_from": "2011-01-03",
  7135. "served_to": null,
  7136. "source": "congress.gov/v3",
  7137. "state": "IN"
  7138. },
  7139. "Y000067": {
  7140. "bioguide": "Y000067",
  7141. "chamber": "House of Representatives",
  7142. "district": null,
  7143. "full_name": "Rudy Yakym",
  7144. "lis": null,
  7145. "party": "R",
  7146. "photo_url": "https://www.congress.gov/img/member/y000067_200.jpg",
  7147. "served_from": "2022-01-03",
  7148. "served_to": null,
  7149. "source": "congress.gov/v3",
  7150. "state": "IN"
  7151. },
  7152. "Z000018": {
  7153. "bioguide": "Z000018",
  7154. "chamber": "House of Representatives",
  7155. "district": null,
  7156. "full_name": "Ryan K. Zinke",
  7157. "lis": null,
  7158. "party": "R",
  7159. "photo_url": "https://www.congress.gov/img/member/117_rp_mt_1_zinke_ryan_200.jpg",
  7160. "served_from": "2015-01-03",
  7161. "served_to": null,
  7162. "source": "congress.gov/v3",
  7163. "state": "MT"
  7164. }
  7165. }