# Money-in-Politics Cross-Domain Profile by Entity Name

> Money-in-Politics Cross-Domain Profile by Entity Name is a paid API for AI agents from api.agentstools.dev, paid per call via x402, $0.04/call, status unknown (last checked 2026-09-15).

Returns a fused profile of an entity's FEC campaign contributions as a donor and Senate LDA lobbying spend as a client, with aggregates and citations across both domains.

## Facts

- Endpoint: GET https://api.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/money-in-politics-cross-domain-profile-by-entity-name-e8a6a2ab
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_UuMXuLmscO-FaKlVseurN

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 money-in-politics-cross-domain-profile-by-entity-name-e8a6a2ab
```

Example prompt: Pull the combined FEC campaign contribution and Senate lobbying profile for Lockheed Martin — I want the aggregates across both domains for a due-diligence review.

## When to prefer this

Use this endpoint when you need a combined cross-domain political footprint — both campaign contributions (FEC) and lobbying spend (Senate LDA) — for a named entity in a single call. Prefer this over separate FEC or lobbying lookups when you want aggregated, cited data for due-diligence, research, or political intelligence purposes. Best suited for named organizations or individuals where the entity is a known donor or lobbying client.

## Known failure modes

- Entity name not found in either FEC or LDA databases — returns empty or minimal profile
- Ambiguous entity name matching multiple organizations — may return mixed or partial results
- One domain unavailable (partial response returned for the working domain only)
- Rate limiting or upstream data source outage — may return error or degraded response
- Name variation mismatch (e.g. abbreviations, subsidiaries) causing incomplete coverage

## 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 cited JSON profile combining the entity's FEC campaign donation records (as donor) and Senate LDA lobbying expenditure records (as client), with aggregates across both domains. Returns partial results per domain if one source fails. Includes source citations for public disclosure traceability.

## 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/money-in-politics-cross-domain-profile-by-entity-name-e8a6a2ab/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)
