# 2s.io US Federal Lobbying Disclosures

> 2s.io US Federal Lobbying Disclosures is a paid API for AI agents from 2s.io, paid per call via x402, $0.0025/call, status unknown (last checked 2026-09-14).

Returns US Senate LDA lobbying filings for a public company by ticker, including registrant name, period, income/expenses, and official filing links

## Facts

- Endpoint: GET https://2s.io/api/stocks/lobbying
- Price: $0.0025/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/2s-io-us-federal-lobbying-disclosures-802433c0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Vead0Tmjl0OAbPSA3ov8o

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 2s-io-us-federal-lobbying-disclosures-802433c0
```

Example prompt: Pull up the US Senate LDA lobbying filings for Pfizer (PFE) from 2021-01-01 to 2024-01-01 — I want to see their registrants, quarterly periods, and how much they reported spending each period.

## When to prefer this

Use this endpoint when you need structured, per-filing lobbying spend data tied to a US public company's stock ticker, sourced directly from Senate LDA disclosures. Prefer it over general news or financial APIs when you need official government filing data with registrant names, quarters, and dollar amounts.

## Known failure modes

- Invalid or unrecognized ticker returns empty results or error
- Date range with no filings returns empty array
- Non-US-listed ticker may return no data
- Malformed date format (not YYYY-MM-DD) may cause query failure
- Rate limiting or payment failure returns 402

## How this service works

US federal lobbying disclosures for a public company (sourced from US Senate LDA filings). Pass ticker and optionally a from/to window (YYYY-MM-DD; defaults to ~3 years); returns each filing with the registrant name, the period (year + quarter), reported lobbying income/expenses in USD, and a link to the official Senate filing. Use it to track a company’s lobbying spend over time. Data by Finnhub.

## Output

A list of lobbying filing records, each containing the registrant name, period (year and quarter), reported lobbying income and/or expenses in USD, and a direct link to the official US Senate filing.

## 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",
    "queryParams"
   ],
   "properties": {
    "type": {
     "const": "http"
    },
    "method": {
     "const": "GET"
    },
    "queryParams": {
     "required": [
      "ticker"
     ],
     "properties": {
      "ticker": {
       "type": "string",
       "description": "US-listed ticker, e.g. AAPL."
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/2s-io-us-federal-lobbying-disclosures-802433c0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 2s.io](https://www.zero.xyz/host/2s.io/llms.txt)
