# SEC EDGAR Company Info & Filings Lookup

> SEC EDGAR Company Info & Filings Lookup is a paid API for AI agents from x402-trends-server.onrender.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Retrieves U.S. SEC EDGAR company information and recent regulatory filings for a given public-company ticker symbol.

## Facts

- Endpoint: GET https://x402-trends-server.onrender.com/api/sec-company
- 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/sec-edgar-company-info-filings-lookup-e41e3870
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_3FGtsNpd2BaFexTPs80Rr

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 sec-edgar-company-info-filings-lookup-e41e3870
```

Example prompt: Can you pull up the SEC EDGAR company info and recent filings for TSLA — I want to see their latest 10-K and any recent 8-K submissions.

## When to prefer this

Use this endpoint when you need authoritative SEC EDGAR regulatory filing data for a U.S.-listed public company by ticker symbol, including structured metadata (CIK, SIC, exchanges) and direct links to official filings. Prefer this over general web scraping when you need machine-readable, structured SEC data without parsing HTML. Best suited for investment research, compliance workflows, or any agent task requiring access to official public company disclosures.

## Known failure modes

- Invalid or unknown ticker symbol returns an error or empty result
- Ticker exists but company has no recent EDGAR filings
- SEC EDGAR upstream service temporarily unavailable causing fetch failure
- Rate limits or payment failures result in 402 response
- Ticker for a foreign or OTC company not registered with SEC returns no data

## How this service works

Get U.S. SEC EDGAR company information and recent filings for a public-company ticker symbol.

## Output

Returns structured company data including the company name, CIK, SIC code, fiscal year end, associated tickers, exchanges, and website, plus two arrays: recentFilings (latest submissions) and keyFilings (important forms like 10-K, 10-Q, 8-K), each with form type, filing date, report date, accession number, primary document name, acceptance datetime, and a direct EDGAR URL.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "ticker"
     ],
     "properties": {
      "ticker": {
       "type": "string",
       "description": "U.S. public-company ticker such as TSLA, AAPL, MSFT, NVDA, or AMZN."
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "status",
      "source",
      "ticker",
      "company",
      "cik",
      "recentFilings",
      "keyFilings",
      "retrievedAt"
     ],
     "properties": {
      "cik": {
       "type": "string"
      },
      "sic": {
       "type": [
        "string",
        "null"
       ]
      },
      "source": {
       "type": "string"
      },
      "status": {
       "type": "string"
      },
      "ticker": {
       "type": "string"
      },
      "company": {
       "type": "string"
      },
      "payment": {
       "type": "string"
      },
      "tickers": {
       "type": "array",
       "items": {
        "type": "string"
       }
      },
      "website": {
       "type": [
        "string",
        "null"
       ]
      },
      "exchanges": {
       "type": "array",
       "items": {
        "type": "string"
       }
      },
      "keyFilings": {
       "type": "array",
       "items": {
        "type": "object",
        "required": [],
        "properties": {
         "url": {
          "type": [
           "string",
           "null"
          ]
         },
         "form": {
          "type": [
           "string",
           "null"
          ]
         },
         "filingDate": {
          "type": [
           "string",
           "null"
          ]
         },
         "reportDate": {
          "type": [
           "string",
           "null"
          ]
         },
         "description": {
          "type": [
           "string",
           "null"
          ]
         },
         "accessionNumber": {
          "type": [
           "string",
  
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/sec-edgar-company-info-filings-lookup-e41e3870/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-trends-server.onrender.com](https://www.zero.xyz/host/x402-trends-server.onrender.com/llms.txt)
