# Lobbying Spend Profile by Company Name

> Lobbying Spend Profile by Company Name is a paid API for AI agents from api.agentstools.dev, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-15).

Returns a fused lobbying-spend profile for a company or organization from US Senate LDA filings, including annual spend totals, trend, top issue areas, hired registrant firms, and optional LD-203 political contribution summaries.

## Facts

- Endpoint: GET https://api.agentstools.dev/lobbying/spend
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/lobbying-spend-profile-by-company-name-e5289437
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5-jF37hzMbmbPk1PoncUs

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 lobbying-spend-profile-by-company-name-e5289437
```

Example prompt: Pull the lobbying spend profile for Pfizer from Senate LDA filings — I want to see their total spend by year, the top issue areas they've been lobbying on, and which firms they hired; also include the LD-203 political contribution summary for their top registrants.

## When to prefer this

Use this endpoint when you need a quick, fused lobbying intelligence profile for a named company or organization sourced from authoritative US Senate LDA public filings, especially when you want annual spend trends, issue breakdown, and registrant firm data in a single cited response. Prefer over raw LDA search when you need normalized, aggregated data rather than raw filing documents.

## Known failure modes

- Company or organization name not found in LDA database — returns empty or no-match result
- Ambiguous company name matching multiple filers — may return best-guess or require more specific name
- No filings for specified filing_year — returns empty spend for that year
- LD-203 contribution data unavailable for top registrants — omitted from response even if include_political_contributions=true
- Rate limit or payment failure — HTTP 402 or 429 response

## How this service works

Lobbying-spend profile for a company or organization by name. Fuses the entity's Senate LDA filings into total reported spend by year with a trend, the top issue areas and the registrant firms it hired, plus recent cited filings. Optionally adds a bounded summary of the LD-203 political contributions reported by its top registrant firms.

## Output

A structured profile containing: total reported lobbying spend broken down by year with a trend indicator, top issue areas lobbied, list of registrant (lobbying) firms hired, citations to recent LDA filings, and optionally a bounded summary of LD-203 political contributions reported by the entity's top registrant firms.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {
      "name": {
       "type": "string",
       "description": "Alias for client_name"
      },
      "client_name": {
       "type": "string",
       "description": "Company or organization lobbying client name"
      },
      "filing_year": {
       "type": "integer",
       "description": "Filing year filter, e.g. 2024"
      },
      "include_political_contributions": {
       "type": "boolean",
       "description": "Also summarize LD-203 contributions of top registrants"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/lobbying-spend-profile-by-company-name-e5289437/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.agentstools.dev](https://www.zero.xyz/host/api.agentstools.dev/llms.txt)
