# BizIntel API - SEC Company Filings Lookup

> BizIntel API - SEC Company Filings Lookup is a paid API for AI agents from bizintel-api.hahavoid0.workers.dev, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Retrieves SEC filings and CIK identifier for a company from the U.S. Securities and Exchange Commission EDGAR database

## Facts

- Endpoint: POST https://bizintel-api.hahavoid0.workers.dev/company/sec
- 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/bizintel-api-sec-company-filings-lookup-b075e024
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__Zv51XPxMPIxNJxYgO3tA

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 bizintel-api-sec-company-filings-lookup-b075e024 -d '<json body>'
```

Example prompt: Can you pull Apple's SEC filings from EDGAR and give me their CIK number along with recent 10-Q filings?

## When to prefer this

Use this endpoint when you need to programmatically look up a U.S. public company's SEC EDGAR CIK number or retrieve their recent regulatory filings (10-K, 10-Q, 8-K, etc.) without needing an API key. Ideal for due diligence workflows, financial research agents, and compliance checks where pay-per-call micro-pricing via USDC on Base is preferable to a subscription.

## Known failure modes

- Company not found in SEC EDGAR — returns unsupported or low confidence result
- Ambiguous company name matches multiple entities — returns lower confidence
- Payment failure via x402/USDC — request not processed
- Company is private and has no SEC filings — returns supported:false
- Rate limiting or worker timeout on the Cloudflare edge

## How this service works

Looks up CIK and parses recent regulatory submissions (10-K, 10-Q) from SEC EDGAR by ticker or CIK.

## Output

Returns the company's CIK number, a list of recent SEC filings with form types (e.g. 10-Q, 10-K), a supported flag, confidence level (high/medium/low), data freshness date, and a disclaimer that the data is informational only.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "required": [
      "ticker_or_cik"
     ],
     "properties": {
      "ticker_or_cik": {
       "type": "string",
       "description": "Company stock ticker (e.g. AAPL) or CIK (e.g. 0000320193)"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "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/bizintel-api-sec-company-filings-lookup-b075e024/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from bizintel-api.hahavoid0.workers.dev](https://www.zero.xyz/host/bizintel-api.hahavoid0.workers.dev/llms.txt)
