Campaign finance
US PAC and committee data for political-exposure checks.
campaignFinance(name, cycle) surfaces committees and candidate finance records matching a name. Use it for political-exposure (PEP-adjacent) checks and donor research.
{
campaignFinance(name: "Microsoft", cycle: 2024) {
name
type
totalRaised
totalSpent
}
}
- curl
- TypeScript
- CLI
curl https://api.jintel.ai/api/graphql \
-H "Authorization: Bearer $JINTEL_API_KEY" \
-d '{"query":"{ campaignFinance(name:\"Microsoft\", cycle:2024) { name type totalRaised totalSpent } }"}'
const { data } = await jintel.campaignFinance("Microsoft", 2024);
// [{ name, type, party, totalRaised, totalSpent, ... }]
jintel campaign-finance "Microsoft" --cycle 2024