# politics-profile

> politics-profile is a paid API for AI agents from payai.agentstools.dev, paid per call via x402, $0.04/call, status unknown (last checked 2026-09-15).

Returns a fused money-in-politics profile for a named entity, combining FEC campaign donation history and Senate LDA lobbying expenditures into a single aggregated record.

## Facts

- Endpoint: GET https://payai.agentstools.dev/politics/profile
- Price: $0.04/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/politics-profile-b61dcf20
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tsz4LLhueRVHUuzJho5GK

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 politics-profile-b61dcf20
```

Example prompt: Can you pull the full money-in-politics profile for Lockheed Martin — I want to see their FEC campaign contributions as a donor and their Senate lobbying spend all in one place?

## When to prefer this

Use this endpoint when you need a unified view of both campaign finance (FEC) and federal lobbying (Senate LDA) activity for a single named entity, especially for due diligence, compliance screening, or investigative research. Prefer this over querying FEC or LDA databases separately when you want aggregated cross-domain totals and citations in one call. Best suited for organizations and prominent individuals with known political activity.

## Known failure modes

- Entity name not found in either FEC or LDA records — returns empty or partial profile
- Ambiguous name matches multiple entities — may return merged or top-N results up to the limit
- One domain (FEC or LDA) temporarily unavailable — returns partial profile from the available domain
- Rate limit or payment failure — request rejected before data is returned
- Name typos or abbreviations may reduce match quality

## How this service works

Cross-domain money-in-politics footprint of one entity by name. Fuses the entity's FEC campaign contributions as a donor with its Senate LDA lobbying spend as a client into one cited profile with aggregates across both domains. Partial on failure per domain. Informational public disclosure data for due-diligence, not for donor solicitation.

## Output

A structured cross-domain profile containing: FEC campaign contribution records (amounts, recipients, dates) for the entity as a donor; Senate LDA lobbying disclosure records (client spend, registrant, issue areas); aggregate totals across both domains; source citations for each data point. Returns partial results if one domain is unavailable.

## 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": [
      "name"
     ],
     "properties": {
      "name": {
       "type": "string",
       "description": "Organization or person name to profile"
      },
      "limit": {
       "type": "integer",
       "maximum": 100,
       "minimum": 1,
       "description": "Max records to return, default 20"
      }
     }
    }
   },
   "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/politics-profile-b61dcf20/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from payai.agentstools.dev](https://www.zero.xyz/host/payai.agentstools.dev/llms.txt)
