# SEC EDGAR Filings Lookup

> SEC EDGAR Filings Lookup is a paid API for AI agents from ai-data-marketplace-1042299154756.us-central1.run.app, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Retrieves SEC EDGAR filings for a given company ticker symbol, optionally filtered by form type and result count.

## Facts

- Endpoint: GET https://ai-data-marketplace-1042299154756.us-central1.run.app/api/v1/sec_edgar_filings
- Price: $0.1/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-filings-lookup-acfa101e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BkBN1HVwDmUiwZQjs7vmX

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-filings-lookup-acfa101e
```

Example prompt: Can you pull up the most recent 10-K and 10-Q SEC filings for NVDA from EDGAR? Just give me the filing dates and links.

## When to prefer this

Use this endpoint when you need structured, programmatic access to SEC EDGAR filing records for a specific public company by ticker, especially when you want to filter by form type (10-K, 10-Q, 8-K) and retrieve direct document URLs. Prefer this over scraping SEC.gov directly or using general-purpose web search when you need clean, machine-readable filing metadata for due diligence, compliance research, or financial analysis workflows.

## Known failure modes

- Invalid or unknown ticker symbol returns empty filings array or error
- Unsupported form_type value may return no results
- Rate limiting or payment failure via x402 may block the request
- SEC EDGAR data may have ingestion lag for very recent filings
- Network timeout if SEC EDGAR upstream is slow

## How this service works

Retrieve official recent SEC filing metadata and primary-document links for a public-company ticker.

## Output

Returns a JSON object containing the queried ticker symbol and an array of matching SEC filings, each with the form type (e.g. 10-K, 10-Q, 8-K), filing date, accession number, and a direct URL to the filing document on SEC.gov.

## 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": {
      "limit": {
       "type": "integer",
       "description": "Max results to return."
      },
      "ticker": {
       "type": "string",
       "description": "Company ticker symbol."
      },
      "form_type": {
       "type": "string",
       "description": "Filing form type, e.g., 10-K, 10-Q, 8-K."
      }
     },
     "additionalProperties": true
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "success",
      "source",
      "fetched_at",
      "company",
      "ticker",
      "cik",
      "count",
      "filings",
      "marketplace_metadata"
     ],
     "properties": {
      "cik": {
       "type": "integer"
      },
      "count": {
       "type": "integer"
      },
      "source": {
       "type": "string"
      },
      "ticker": {
       "type": "string"
      },
      "company": {
       "type": "string"
      },
      "filings": {
       "type": "array",
       "items": {
        "type": "string"
       }
      },
      "success": {
       "type": "boolean"
      },
      "fetched_at": {
       "type": "string"
      },
      "marketplace_metadata": {
       "type": "object",
       "required": [
        "data_mode",
        "billable",
        "availability",
        "source"
       ],
       "properties": {
        "source": {
         "type": "string"
        },
        "billable": {
         "type": "boolean"
        },
        "data_mode": {
         "type": "string"
        },
        "availability": {
         "type": "string"
        }
       },
       "additionalProperties": true
      }
     },
     "additionalProperties": true
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "cik": 1045810,
  "count": 1,
  "source": "SEC EDGAR submissions API",
  "ticker": "NVDA",
  "company": "NVIDIA CORP",
  "filings": [
   "[nested detail omitted from the challenge header; see the full example in /openapi.json]"
  ],
  "success": true,
  "fetched_at": "2026-08-07T07:32:29.303Z",
  "marketplace_metadata": {
   "source": "SEC EDGAR submissions API",
   "billable": true,
   "data_mode": "live_source",
   "availability": "operational"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/sec-edgar-filings-lookup-acfa101e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from ai-data-marketplace-1042299154756.us-central1.run.app](https://www.zero.xyz/host/ai-data-marketplace-1042299154756.us-central1.run.app/llms.txt)
