# CelerAPI SEC EDGAR Company Filings Lookup

> CelerAPI SEC EDGAR Company Filings Lookup is a paid API for AI agents from www.celerapi.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Retrieves a paginated list of SEC EDGAR filings for a specific company identified by its CIK number

## Facts

- Endpoint: GET https://www.celerapi.com/v1/sec/company/%7Bcik%7D/filings
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/celerapi-sec-edgar-company-filings-lookup-b6f53970
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MLRwSyEKDtYMl3IhKMncb

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 celerapi-sec-edgar-company-filings-lookup-b6f53970
```

Example prompt: Can you pull the 10 most recent SEC filings for Apple — their CIK is 0000320193 — and show me the form type, filing date, and a link to each document?

## When to prefer this

Use this endpoint when you need live, structured, machine-readable SEC EDGAR filing data for a specific public company identified by CIK. Prefer it over scraping SEC.gov directly since it returns clean JSON with provenance metadata. Ideal for due diligence workflows, compliance monitoring, or financial research agents that need to enumerate a company's regulatory filings without managing EDGAR API integration themselves. Pay-per-request at $0.01 USDC with no subscription required makes it suitable for low-frequency or on-demand lookups.

## Known failure modes

- Invalid or non-existent CIK returns an error or empty filing list
- CIK must be a numeric string up to 10 digits; non-numeric values fail schema validation
- Limit parameter out of range (below 1 or above 100) causes validation error
- SEC EDGAR data.sec.gov service downtime may cause retrieval failures
- Truncated response if 'complete' field is false, indicating more filings exist beyond the limit

## How this service works

Resolve companies, legal entities and financial reference data using authoritative sources. Machine-native, pay per request, no subscription.

## Output

Returns a structured JSON object containing the company name, CIK, and an array of filings. Each filing includes the accession number, filing date, report date, SEC form type (e.g. 10-K, 10-Q, 8-K), primary document filename, and a direct URL to the filing on EDGAR. Also includes provenance metadata (source, license, freshness) and any data warnings.

## 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"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "cik"
     ],
     "properties": {
      "cik": {
       "type": "string",
       "example": "0000320193",
       "pattern": "^\\d{1,10}$",
       "examples": [
        "0000320193"
       ]
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "limit": {
       "type": "integer",
       "default": 20,
       "example": 20,
       "maximum": 100,
       "minimum": 1,
       "examples": [
        20
       ]
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "success",
      "complete",
      "data",
      "warnings",
      "provenance"
     ],
     "properties": {
      "data": {
       "type": "object",
       "required": [
        "cik",
        "entity_name",
        "filings"
       ],
       "properties": {
        "cik": {
         "type": "string",
         "pattern": "^\\d{1,10}$"
        },
        "filings": {
         "type": "array",
         "items": {
          "type": "object",
          "required": [
           "accession_number",
           "filing_date",
           "report_date",
           "form",
           "primary_document",
           "filing_url"
          ],
          "properties": {
           "form": {
            "type": "string"
           },
           "filing_url": {
            "type": "string",
            "format": "uri"
           },
           "filing_date": {
            "type": "string",
            "pattern": "^\\d{4}-\\d{2}-\\d{2}$"
           },
           "report_date": {
            "anyOf": [
             {
              "type": "string"
             },
             {
              "type": "null"
             }
            ]
           },
           "accession_number": {
            "type": "string"
           },
           "primary_document": {
            "anyOf": [
             {
              "type": "string"
             },
       
… (truncated)
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {},
  "success": true,
  "complete": true,
  "warnings": [],
  "provenance": {
   "source": "U.S. Securities and Exchange Commission EDGAR",
   "license": "United States government public data; SEC fair-access policy applies",
   "provider": "sec_edgar",
   "freshness": "live",
   "source_url": "https://data.sec.gov"
  }
 }
}
```

## More

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