# US Company Data Lookup via SEC EDGAR

> US Company Data Lookup via SEC EDGAR is a paid API for AI agents from api.strale.io, paid per call via x402, $0.054001/call, status unknown (last checked 2026-09-15).

Looks up US company information from SEC EDGAR by CIK number, ticker symbol, or fuzzy company name, returning name, CIK, SIC code, state, and filings summary.

## Facts

- Endpoint: GET https://api.strale.io/x402/us-company-data
- Price: $0.054001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-strale-io-3e189945
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_M8H6okjq_HgO0rf_LM1Df

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 api-strale-io-3e189945
```

Example prompt: Can you look up Apple Inc. in the SEC EDGAR database and tell me their CIK number, SIC code, and state of incorporation?

## When to prefer this

Use this endpoint when you need to resolve a US company's SEC identity — CIK, SIC code, state, and filings summary — from a ticker symbol, CIK number, or a fuzzy company name. Prefer this over manual EDGAR searches when enriching financial data pipelines, verifying company registrations, or cross-referencing public company metadata.

## Known failure modes

- Company not found in EDGAR — returns empty or null result
- Ambiguous fuzzy name match returns wrong company
- Invalid or malformed CIK/ticker returns error
- Rate limiting or payment failure returns 402
- Network timeout or EDGAR upstream unavailability

## How this service works

Look up US company data from SEC EDGAR. Accepts CIK number, ticker symbol, or fuzzy company name. Returns company name, CIK, SIC code, state, filings summary.

## Output

Returns structured company data including company name, CIK number, SIC code, state of incorporation, and a summary of SEC filings associated with the company.

## Example request

```json
{
 "company": "AAPL"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "cik": {
   "type": "string",
   "description": "SEC CIK number. Alternate to 'company' — same resolution rules apply."
  },
  "ticker": {
   "type": "string",
   "description": "Stock ticker symbol. Alternate to 'company' — same resolution rules apply."
  },
  "company": {
   "type": "string",
   "description": "CIK number, ticker symbol, or company name. Resolution order: exact CIK match, then exact ticker match, then exact company-name match (both via the SEC ticker/title map — no LLM call), then a best-effort LLM name extraction + SEC full-text filing search as a last resort (gated by match_confidence / allow_low_confidence below)."
  },
  "company_name": {
   "type": "string",
   "description": "US company name. Alternate to 'company' — same resolution rules apply."
  },
  "allow_low_confidence": {
   "type": "boolean",
   "description": "If true, return the best-effort match even when the name could not be confidently resolved (match_confidence \"low\"). Default false — a low-confidence name lookup errors instead of returning a possibly-wrong company identity, so it can't silently feed downstream screening. Only relevant to the LLM+full-text-search fallback path; exact CIK/ticker/title-map resolutions are always match_confidence \"exact\" and are never gated by this flag."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "cik": {
  "type": "string"
 },
 "state": {
  "type": "string"
 },
 "status": {
  "type": [
   "string",
   "null"
  ]
 },
 "sic_code": {
  "type": "string"
 },
 "vat_number": {
  "type": [
   "string",
   "null"
  ]
 },
 "company_name": {
  "type": "string"
 },
 "searched_name": {
  "type": [
   "string",
   "null"
  ],
  "description": "The company name that was resolved and searched; null when a CIK was supplied directly"
 },
 "is_exact_match": {
  "type": "boolean",
  "description": "True only when the resolved company name matches the queried name after normalization (or a CIK was supplied directly)"
 },
 "fiscal_year_end": {
  "type": "string"
 },
 "match_confidence": {
  "enum": [
   "exact",
   "high",
   "low"
  ],
  "type": "string",
  "description": "Confidence that the returned entity is the one asked for. \"low\" means the name search may have matched a different filer that merely mentions the name"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-strale-io-3e189945/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.strale.io](https://www.zero.xyz/host/api.strale.io/llms.txt)
