Federal lobbying for a company: who they hire, what they spend, which issues, and how rece
Federal lobbying for a company: who they hire, what they spend, which issues, and how recent the activity is.
30000 (raw units)
price
2
calls / 30d
1
unique payers
2026-09-09
updated
Provider
loonie-toll.onrender.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xb531320805C5BED1D46AEaDcF4F008FDF172DBDa",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "30000",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"payTo": "DUPiupXtuox38dcGoXUKer5mAydCzmaHjrbQ66qeEm8s",
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"amount": "30000",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "eip155:137",
"payTo": "0xb531320805C5BED1D46AEaDcF4F008FDF172DBDa",
"asset": "0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359",
"amount": "30000",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "eip155:42161",
"payTo": "0xb531320805C5BED1D46AEaDcF4F008FDF172DBDa",
"asset": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831",
"amount": "30000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"client": "Microsoft",
"years": 3
},
"type": "http"
},
"output": {
"example": {
"counts": {
"filings": 25,
"filingsWithAmounts": 23,
"lobbyingFirms": 20
},
"disclaimer": "Advisory only, provided as is without warranty of accuracy or completeness. Lobbying disclosures are self-reported by registrants, are filed quarterly and therefore lag, and are matched here by client…",
"matchedClientNames": [
"MICROSOFT",
"MICROSOFT CORPORATION"
],
"query": {
"client": "Microsoft",
"sinceYear": 2024,
"years": 3
},
"retrievedAt": "2026-09-09T00:56:18.528Z",
"signals": [
"25 filing(s) since 2024 across 20 lobbying firm(s).",
"$3,900,000 in reported lobbying spend across 23 filing(s) that stated an amount.",
"…1 more"
],
"source": "US Senate Lobbying Disclosure Act database",
"spendByYear": [
{
"reported": 3900000,
"year": 2026
}
],
"topIssues": [
{
"issue": "Computer Industry",
"mentions": 12
},
{
"issue": "Telecommunications",
"mentions": 8
}
],
"topLobbyingFirms": [
{
"filings": 2,
"firm": "HARBINGER STRATEGIES, LLC"
},
{
"filings": 2,
"firm": "ELEVATE GOVERNMENT AFFAIRS, LLC"
}
],
"totalReportedSpend": 3900000,
"verdict": "FEDERAL_LOBBYING_ON_RECORD"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"client": {
"description": "Company or organisation that hired lobbyists",
"type": "string"
},
"years": {
"description": "Lookback window in years, default 3",
"type": "integer"
}
},
"required": [
"client"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"counts": {
"properties": {
"filings": {
"type": "integer"
},
"filingsWithAmounts": {
"type": "integer"
},
"lobbyingFirms": {
"type": "integer"
}
},
"type": "object"
},
"disclaimer": {
"type": "string"
},
"matchedClientNames": {
"items": {
"type": "string"
},
"type": "array"
},
"query": {
"properties": {
"client": {
"type": "string"
},
"sinceYear": {
"type": "integer"
},
"years": {
"type": "integer"
}
},
"type": "object"
},
"retrievedAt": {
"type": "string"
},
"signals": {
"items": {
"type": "string"
},
"type": "array"
},
"source": {
"type": "string"
},
"spendByYear": {
"items": {
"properties": {
"reported": {
"type": "integer"
},
"year": {
"type": "integer"
}
},
"type": "object"
},
"type": "array"
},
"topIssues": {
"items": {
"properties": {
"issue": {
"type": "string"
},
"mentions": {
"type": "integer"
}
},
"type": "object"
},
"type": "array"
},
"topLobbyingFirms": {
"items": {
"properties": {
"filings": {
"type": "integer"
},
"firm": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
},
"totalReportedSpend": {
"type": "integer"
},
"verdict": {
"type": "string"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://loonie-toll.onrender.com/lobbying" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://loonie-toll.onrender.com/lobbying");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://loonie-toll.onrender.com/lobbying")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/7845.json, and this resource appears in /discovery/resources and /discovery/search.