# ClearCheck Federal Lobbying Lookup

> ClearCheck Federal Lobbying Lookup is a paid API for AI agents from loonie-toll.onrender.com, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-14).

Returns federal lobbying profile for a company: hired firms, total spend by year, top issues, and recency signals.

## Facts

- Endpoint: GET https://loonie-toll.onrender.com/lobbying
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/clearcheck-federal-lobbying-lookup-e9cb1dfb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_JpxoW3l4mxBwcieOvPFp3

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 clearcheck-federal-lobbying-lookup-e9cb1dfb
```

Example prompt: Can you pull up the federal lobbying profile for Pfizer over the last 3 years — I want to see which firms they hired, what they spent each year, and which policy issues they're focused on?

## When to prefer this

Use this endpoint when you need a fast, structured summary of a specific company's federal lobbying history — hired firms, issue areas, and spending trends — sourced from official Senate LD-2 disclosures. Prefer it over general web search when you need structured, machine-readable lobbying data with year-by-year spend and a clear verdict signal. Not suitable for state-level lobbying or non-US entities.

## Known failure modes

- Company name not found in lobbying disclosures — returns zero filings and empty arrays
- Ambiguous company name matches multiple clients — matchedClientNames may include unrelated entities
- Spend data may be incomplete if filings omit dollar amounts — filingsWithAmounts < filings total
- Very recent filings may not yet appear due to disclosure lag
- Non-US or foreign-only companies will return no results

## How this service works

Federal lobbying for a company: who they hire, what they spend, which issues, and how recent the activity is.

## Output

Returns a structured object with: matched client names found in disclosures, total reported spend, spend broken down by year, top lobbying firms with filing counts, top policy issues by mention frequency, overall filing counts, signals summarizing recency and activity level, a plain-language verdict, data source attribution, and a retrieval timestamp.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "client"
     ],
     "properties": {
      "years": {
       "type": "integer",
       "description": "Lookback window in years, default 3"
      },
      "client": {
       "type": "string",
       "description": "Company or organisation that hired lobbyists"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "query": {
       "type": "object",
       "properties": {
        "years": {
         "type": "integer"
        },
        "client": {
         "type": "string"
        },
        "sinceYear": {
         "type": "integer"
        }
       }
      },
      "counts": {
       "type": "object",
       "properties": {
        "filings": {
         "type": "integer"
        },
        "lobbyingFirms": {
         "type": "integer"
        },
        "filingsWithAmounts": {
         "type": "integer"
        }
       }
      },
      "source": {
       "type": "string"
      },
      "signals": {
       "type": "array",
       "items": {
        "type": "string"
       }
      },
      "verdict": {
       "type": "string"
      },
      "topIssues": {
       "type": "array",
       "items": {
        "type": "object",
        "properties": {
         "issue": {
          "type": "string"
         },
         "mentions": {
          "type": "integer"
         }
        }
       }
      },
      "disclaimer": {
       "type": "string"
      },
      "retrievedAt": {
       "type": "string"
      },
      "spendByYear": {
       "type": "array",
       "items": {
        "type": "object",
        "properties": {
         "year": {
          "type": "integer"
         },
         "reported": {
          "type": "integer"
         }
        }
       }
      },
      "topLobbyingFirms": {
       "type": "array",
       "items": {
        "type": "object",
        "properties": {
         "firm": {
          "type": "str
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/clearcheck-federal-lobbying-lookup-e9cb1dfb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from loonie-toll.onrender.com](https://www.zero.xyz/host/loonie-toll.onrender.com/llms.txt)
