# CortexAssay SEC Company Intelligence

> CortexAssay SEC Company Intelligence is a paid API for AI agents from cortexassay.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-16).

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

## Facts

- Endpoint: GET https://cortexassay.com/v1/sec/company
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cortexassay-sec-company-intelligence-34337cbc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_uo5g0QEracLxi52Zvmfh-

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 cortexassay-sec-company-intelligence-34337cbc
```

Example prompt: Pull the SEC company profile for Jefferies Financial Group — ticker JEF — including their recent filings, any events from the last 30 days, and insider transaction activity over the past 90 days.

## When to prefer this

Choose this endpoint when you need structured, machine-readable SEC intelligence for a specific public company and want it pre-computed and aggregated from EDGAR in a single call. It is ideal when you need a combination of filings, insider activity, and financial facts without having to parse raw EDGAR JSON yourself. Prefer this over direct EDGAR API calls when you need normalized output with insider transaction summaries and event detection already computed. Best for AI agents that need pay-per-call access without managing API keys.

## Known failure modes

- Invalid or unknown ticker returns no match or empty result
- Malformed CIK (non-numeric or too long) rejected by schema validation
- Company with no recent filings returns empty recent_filings array
- Payment not completed via x402 returns 402 Payment Required
- Rate limiting or upstream SEC EDGAR unavailability causes timeout or error
- Both cik and ticker omitted results in ambiguous or failed lookup

## How this service works

Machine-consumable research and technology intelligence computed from open data (OpenAlex, CC0). Pay per call with x402. Schemas, prices and provenance are machine-readable.

## Output

Returns a structured JSON object with the company's CIK, name, ticker symbols, SIC code and industry description, state of incorporation, fiscal year end, recent SEC filings with URLs and form types, events from the last 30 days, insider buy/sell counts and net USD over the last 90 days, key financial facts (e.g. revenues) with period and fiscal year annotations, source URLs pointing to underlying SEC EDGAR data, and a timestamp indicating data freshness.

## 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/cortexassay-sec-company-intelligence-34337cbc/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from cortexassay.com](https://www.zero.xyz/host/cortexassay.com/llms.txt)
