# AgentToll Lobbying Data Lookup

> AgentToll Lobbying Data Lookup is a paid API for AI agents from agenttoll.dev, paid per call via x402, $0.04/call, status unknown (last checked 2026-09-14).

Search and retrieve U.S. federal lobbying records by year, client, or lobbyist name

## Facts

- Endpoint: POST https://agenttoll.dev/paid/gov/lobbying
- Price: $0.04/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agenttoll-lobbying-data-lookup-70972d63
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_alAPghy1GeG2jF06m8HOK

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 agenttoll-lobbying-data-lookup-70972d63 -d '<json body>'
```

Example prompt: Can you look up federal lobbying records for Pfizer as a client in 2022 and tell me which lobbyists were registered on their behalf?

## When to prefer this

Choose this endpoint when you need structured, queryable access to U.S. federal lobbying filings and want to filter by year, client, or lobbyist. It is well-suited for political research, OSINT investigations, compliance checks, or journalism tasks requiring lobbying transparency data. Prefer this over manual search tools when you need machine-readable output at $0.04 per call via USDC micropayment.

## Known failure modes

- No matching records found for the given client or lobbyist name — returns empty array
- Invalid year format causes schema validation error
- Misspelled client or lobbyist name returns zero results silently
- Payment failure in x402 protocol prevents request from being processed
- Rate limiting or quota exceeded returns error response
- Source data unavailable or delayed causes stale or missing results

## How this service works

108+ receipt-backed x402 work products for AI agents. Clear prices, spend caps, buyer metadata, and structured results over Base USDC.

## Output

Returns an array or object of lobbying records matching the query, along with metadata including the total record count, the data source name, and the timestamp when the data was generated. A 'cached' boolean indicates whether the response was served from cache. A 'success' boolean confirms whether the request succeeded.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "year": {
   "type": "integer"
  },
  "client": {
   "type": "string"
  },
  "lobbyist": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "oneOf": [
    {
     "type": "array"
    },
    {
     "type": "object"
    }
   ]
  },
  "meta": {
   "type": "object",
   "properties": {
    "count": {
     "type": "integer"
    },
    "source": {
     "type": "string"
    },
    "generated_at": {
     "type": "string",
     "format": "date-time"
    }
   }
  },
  "cached": {
   "type": "boolean"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agenttoll-lobbying-data-lookup-70972d63/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agenttoll.dev](https://www.zero.xyz/host/agenttoll.dev/llms.txt)
