# AnswerPool Rule Impact Map

> AnswerPool Rule Impact Map is a paid API for AI agents from answerpool.io, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Maps a Federal Register rule to the public companies whose SEC filings cite its docket, RIN, or CFR part, ranked by citation strength with filing counts and dates.

## Facts

- Endpoint: GET https://answerpool.io/v1/impact/rule
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/answerpool-rule-impact-map-bd2e3fc0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_sAsXFiesZFablr2hlD_ly

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 answerpool-rule-impact-map-bd2e3fc0
```

Example prompt: Which public companies cite Federal Register rule 2026-12341 in their SEC filings? Show me up to 50 companies ranked by citation strength, looking back over the past two years.

## When to prefer this

Use this endpoint when you need to cross-reference a specific federal rule with its actual footprint in public company SEC disclosures in a single call, rather than querying Federal Register and EDGAR separately and joining results yourself. Prefer it over the CFR Citers endpoint when you have a Federal Register document number rather than a CFR title/part, and over the Company Regulation Radar endpoint when you want company-level impact across the full market for one rule rather than rules mapped to one company.

## Known failure modes

- Invalid or malformed document_number returns a validation error
- Document number not found in Federal Register yields zero company matches
- lookback_days outside 30–1825 range returns a parameter error
- limit outside 1–100 range returns a validation error
- No SEC filings reference the rule in the specified lookback window — returns empty companies array with count 0

## How this service works

AnswerPool turns SEC EDGAR, the Federal Register, USAspending, NIH, BLS and OpenAlex into structured JSON answers that AI agents and developers fetch in one call. 69 endpoints free, no account; derived analyses $0.02–$0.05 per call by card credits or USDC (x402). MCP server, full provenance.

## Output

Returns a ranked list of public companies whose SEC filings reference the specified Federal Register rule, including each company's CIK, name, number of matching filings, form types, latest filing date, and which identifiers (docket, RIN, CFR part) were matched — plus rule metadata (title, agencies, publication date, significance flag) and a total filing match count.

## 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",
     "title": "RuleImpactIn",
     "required": [
      "document_number"
     ],
     "properties": {
      "limit": {
       "type": "integer",
       "title": "Limit",
       "default": 25,
       "maximum": 100,
       "minimum": 1,
       "description": "Maximum companies returned, most rule identifiers matched first."
      },
      "lookback_days": {
       "type": "integer",
       "title": "Lookback Days",
       "default": 365,
       "maximum": 1825,
       "minimum": 30,
       "description": "How far back to scan SEC filings."
      },
      "document_number": {
       "type": "string",
       "title": "Document Number",
       "pattern": "^[A-Za-z0-9._-]+$",
       "maxLength": 40,
       "minLength": 3,
       "description": "Federal Register document number, e.g. 2026-12341."
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "as_of": "2026-09-02T20:00:00Z",
  "count": 1,
  "title": "Cybersecurity Risk Management Rule",
  "agencies": [
   "Securities and Exchange Commission"
  ],
  "companies": [
   {
    "cik": "0000320193",
    "forms": [
     "10-K",
     "8-K"
    ],
    "company": "Apple Inc.",
    "filings": 3,
    "matched": [
     "17 CFR 240",
     "SEC-2026-001"
    ],
    "latest_filed": "2026-08-15"
   }
  ],
  "significant": true,
  "document_number": "2026-12341",
  "publication_date": "2026-08-30",
  "identifiers_searched": [
   "SEC-2026-001",
   "3235-AN00",
   "17 CFR 240"
  ],
  "total_filing_matches": 42
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/answerpool-rule-impact-map-bd2e3fc0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from answerpool.io](https://www.zero.xyz/host/answerpool.io/llms.txt)
