# Lobbyist Filings Lookup

> Lobbyist Filings Lookup is a paid API for AI agents from x402.forgemesh.io, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Searches the US Senate Lobbying Disclosure Act database for quarterly lobbying reports and registrations by client or firm name, returning filing amounts, issue areas, lobbyist rosters, and document references.

## Facts

- Endpoint: POST https://x402.forgemesh.io/lobbyist-filings-lookup
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/lobbyist-filings-lookup-c591a204
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_CDWqzcZ4MR78HiJk-4Jzk

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability lobbyist-filings-lookup-c591a204 -d '<json body>'
```

Example prompt: Pull all the 2025 quarterly lobbying filings where Coinbase is listed as the client — I want to see the registrant firms, income amounts, and issue areas covered.

## When to prefer this

Choose this endpoint when you need structured, machine-readable lobbying disclosure data from the US Senate LDA database without setting up your own scraping pipeline. It is especially useful for agents building influence-mapping workflows that combine lobbying data with campaign finance and congressional trading records. Prefer it over direct LDA website scraping for reliability and structured output, and over generic web search when you need specific filing amounts, issue codes, and lobbyist rosters for a named organization.

## Known failure modes

- No results returned when client/registrant name spelling doesn't match the LDA database exactly
- Ambiguous organization names may return filings for multiple unrelated entities
- Missing or null income fields for certain filing types (e.g., registrations vs. quarterly reports)
- Rate limiting or payment failure if x402 micropayment is not properly handled
- Year parameter outside available data range returns empty results

## How this service works

Lobbyist filing lookup: quarterly lobbying reports and registrations matching a client or firm name, with amounts, issue areas, lobbyist rosters, and filing documents. Combine with campaign-finance and congressional-trade data to map an organization's full influence footprint.

## Output

Returns a JSON object containing a count of matching filings and an array of results, each with the client name, registrant (lobbying firm) name, income amount, filing UUID, filing year, filing type display name, and an array of lobbying activities with their general issue code labels. Attribution to the US Senate LDA public domain database is included.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "year": {
   "type": "string",
   "description": "filing year, e.g. '2025'"
  },
  "client": {
   "type": "string",
   "description": "client organization name, e.g. 'coinbase'"
  },
  "registrant": {
   "type": "string",
   "description": "lobbying firm name"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {
   "count": 44,
   "results": [
    {
     "client": {
      "name": "COINBASE, INC."
     },
     "income": "120000.00",
     "registrant": {
      "name": "Example Advocacy LLC"
     },
     "filing_uuid": "205eb562-a522-4dd8-a913-4ecfbd4dbd42",
     "filing_year": 2025,
     "filing_type_display": "Quarterly Report",
     "lobbying_activities": [
      {
       "general_issue_code_display": "Financial Institutions"
      }
     ]
    }
   ]
  },
  "attribution": "US Senate Lobbying Disclosure Act database (public domain)"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/lobbyist-filings-lookup-c591a204/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.forgemesh.io](https://www.zero.xyz/host/x402.forgemesh.io/llms.txt)
