Unfortunately I'm not vetted on The_Donald discord, I'll PM you discord username if you want to DM on Discord.
Wisconsin is simple, all you have to do is send a POST request to https://myvote.wi.gov/DesktopModules/GabMyVoteModules/api/voter/search
With python requests. Not too familiar with JS so I'll work with python for now. Hopefully they're dumb and don't have rate limiting in place, otherwise I'll have to write up some proxy stuff.
E.g. this is JSON I'm getting back with the Milwaukee mayor's voter info -
{ "$id": "1", "voters": { "$id": "2", "$values": [ { "$id": "3", "voterID": "f36f19ab-4db0-e511-80ea-0050568c2fc0", "voterName": "Barrett, Thomas M", "address": "5030 W Washington Blvd", "voterStatus": 0, "voterStatusName": "Active", "statusReasonCode": 757580001, "statusReasonName": "Registered", "city": "Milwaukee", "postalCode": "53208-1701", "state": "WI", "dateOfBirth": "1953-12-08T00:00:00Z", "districtComboID": "18743edb-ddaf-e511-80ea-0050568c2fc0", "jurisdictionID": "63ce0067-ddaf-e511-80ea-0050568c2fc0", "voterTypeID": 757580000, "voterTypeName": "Regular", "registrationDate": "11/4/1980", "registrationSource": "", "voterRegNumber": "0009084588", "congressionalCode": "CG-04" } ] } }
Unfortunately I'm not vetted on The_Donald discord, I'll PM you discord username if you want to DM on Discord.
Wisconsin is simple, all you have to do is send a POST request to https://myvote.wi.gov/DesktopModules/GabMyVoteModules/api/voter/search
With python requests. Hopefully they're dumb and don't have rate limiting in place, otherwise I'll have to write up some proxy stuff.
E.g. this is JSON I'm getting back with the Milwaukee mayor's voter info -
{ "$id": "1", "voters": { "$id": "2", "$values": [ { "$id": "3", "voterID": "f36f19ab-4db0-e511-80ea-0050568c2fc0", "voterName": "Barrett, Thomas M", "address": "5030 W Washington Blvd", "voterStatus": 0, "voterStatusName": "Active", "statusReasonCode": 757580001, "statusReasonName": "Registered", "city": "Milwaukee", "postalCode": "53208-1701", "state": "WI", "dateOfBirth": "1953-12-08T00:00:00Z", "districtComboID": "18743edb-ddaf-e511-80ea-0050568c2fc0", "jurisdictionID": "63ce0067-ddaf-e511-80ea-0050568c2fc0", "voterTypeID": 757580000, "voterTypeName": "Regular", "registrationDate": "11/4/1980", "registrationSource": "", "voterRegNumber": "0009084588", "congressionalCode": "CG-04" } ] } }