# AnswerPool SEC Company Intelligence

> AnswerPool SEC Company Intelligence is a paid API for AI agents from answerpool.io, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Retrieves computed SEC company intelligence including filings, insider activity, financial facts, and recent events for a public company identified by ticker or CIK

## Facts

- Endpoint: GET https://answerpool.io/v1/sec/company
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/answerpool-sec-company-intelligence-f10fc562
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mUmXlUEhUElaFZk4zNV4J

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-sec-company-intelligence-f10fc562
```

Example prompt: Pull up the SEC company profile for Jefferies Financial Group — I want recent filings, insider trading over the last 90 days, and key financial facts like revenues.

## When to prefer this

Choose this endpoint when you need structured, machine-readable SEC company data — including insider activity, recent filings, and financial facts — without scraping EDGAR yourself. It is especially useful for AI agents that need provenance-linked, pay-per-call financial intelligence on U.S. public companies, identified by ticker or CIK. Prefer it over generic web search when you need clean, schema-validated output with source URLs.

## Known failure modes

- Missing both ticker and CIK: returns validation error requiring at least one identifier
- Unknown ticker or CIK not found in EDGAR: returns empty or 404-style response
- Payment failure via x402 protocol: request not fulfilled, no data returned
- Truncated facts if company has very large filing history
- Rate limiting if too many calls in a short window
- Stale data if EDGAR upstream has not refreshed recently

## 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 structured JSON object with the company's CIK, name, ticker symbols, SIC code and description, state of incorporation, fiscal year end, recent SEC filings (with URLs, form types, and dates), 30-day events, 90-day insider trading summary (buys, sells, net USD), and time-series financial facts keyed by metric name — all sourced and timestamped, with provenance URLs to raw EDGAR data.

## 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": "CompanyInput",
     "properties": {
      "cik": {
       "anyOf": [
        {
         "type": "string",
         "pattern": "^\\d{1,10}$",
         "maxLength": 10
        },
        {
         "type": "null"
        }
       ],
       "title": "Cik",
       "default": null,
       "description": "SEC CIK, 1-10 digits, zero padding optional (e.g. 320193); skips ticker resolution. Provide exactly one of cik or ticker."
      },
      "ticker": {
       "anyOf": [
        {
         "type": "string",
         "maxLength": 12
        },
        {
         "type": "null"
        }
       ],
       "title": "Ticker",
       "default": null,
       "description": "US exchange ticker, case-insensitive (e.g. AAPL), resolved through the EDGAR ticker file; an unresolvable ticker returns 422. Provide exactly one of ticker or cik."
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "cik": "0000096223",
  "sic": "6199",
  "name": "JEFFERIES FINANCIAL GROUP INC.",
  "as_of": "2026-08-30T18:00:00Z",
  "facts": {
   "Revenues": [
    {
     "fp": "Q2",
     "fy": 2026,
     "end": "2026-05-31",
     "form": "10-Q",
     "value": 1650000000
    }
   ]
  },
  "sources": {
   "companyfacts": "https://data.sec.gov/api/xbrl/companyfacts/CIK0000096223.json"
  },
  "tickers": [
   "JEF"
  ],
  "events_30d": [],
  "insider_90d": {
   "buys": 2,
   "sells": 5,
   "net_usd": -1250000
  },
  "recent_filings": [
   {
    "url": "https://www.sec.gov/...",
    "form": "8-K",
    "filed": "2026-08-29"
   }
  ],
  "fiscal_year_end": "1130",
  "sic_description": "Finance Services",
  "state_of_incorporation": "NY"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/answerpool-sec-company-intelligence-f10fc562/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)
