
Build with VoterGuideOS.
VoterGuideOS is a new voter guide platform that boosts engagement, grows your audience, and saves your team time.
Quick Start
Start building voter guides with accurate, local data.
Use the VoterGuideOS API to search, filter, and render the candidates to a voter's address. Responses are pre-filled with your newsroom's editorial content.
- ✓Pre-loaded with local data
- ✓Explore candidates, districts, and ballot measures
- ✓Filter and query by address, election, or district
Get /api/v1/candidatesCandidates API
curl "https://www.branch.vote/api/v1/candidates?election=ga-2026-general-election&office=mayor" \
-H "X-Organization-Id: ORG_ID"
// Response
{
"total": 2,
"limit": 10,
"data": [
{
"_id": "candidate_123",
"name": "Jane Smith",
"party": "Nonpartisan",
"race": {
"officeName": "Mayor",
"district": { "name": "Atlanta" }
},
"summary": "Current city council member."
}
]
}