# SEC EDGAR Filing Search via x402.agentutility.ai

> SEC EDGAR Filing Search via x402.agentutility.ai is a paid API for AI agents from x402.agentutility.ai, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Searches SEC EDGAR company filings by ticker symbol or CIK, returning 10-K, 10-Q, 8-K, S-1, DEF 14A, Form 4, and 13F-HR documents

## Facts

- Endpoint: POST https://x402.agentutility.ai/sec-filings
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sec-edgar-filing-search-via-x402-agentutility-ai-ea78590f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Ooh2KoxBjOvg0BWz46jFc

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-filing-search-via-x402-agentutility-ai-ea78590f -d '<json body>'
```

Example prompt: Pull up the most recent 10-K annual filing for Apple — ticker AAPL — from SEC EDGAR so I can review their financial statements.

## When to prefer this

Choose this endpoint when an AI agent needs programmatic, pay-per-call access to SEC EDGAR filings without managing API keys or subscriptions. Ideal for agents that infrequently query filings and want USDC micropayment settlement via x402. Use when you need structured access to any of the seven supported filing types (10-K, 10-Q, 8-K, S-1, DEF 14A, Form 4, 13F-HR) by ticker or CIK.

## Known failure modes

- Invalid or unknown ticker symbol returns no results
- Incorrect CIK number returns empty results or wrong company
- Unsupported filing type returns an error or empty set
- Rate limiting or payment failure (x402 USDC not settled) blocks the request
- SEC EDGAR backend downtime causes request failure
- Very recent filings may not yet be indexed

## How this service works

Searches SEC EDGAR company filings by ticker or CIK: 10-K, 10-Q, 8-K, S-1, DEF 14A, Form 4, and 13F-HR. Same SEC EDGAR backend as sec-filing, with plural buyer wording for agents searching filing feeds. Use it as a SEC filings API or EDGAR company filing search.

## Output

Returns a list of matching SEC EDGAR filings for the specified company and filing type, including filing metadata such as dates, filing URLs, document descriptions, and CIK identifiers sourced directly from the SEC EDGAR backend.

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "enum": [
      "POST"
     ]
    },
    "bodyType": {
     "type": "string",
     "enum": [
      "json",
      "form-data",
      "text"
     ]
    },
    "body": {
     "properties": {
      "ticker": {
       "type": "string",
       "description": "US-listed stock ticker (e.g. 'AAPL', 'TSLA'). Either ticker or cik is required."
      },
      "cik": {
       "type": "string",
       "description": "SEC Central Index Key (zero-padded or numeric, e.g. '0000320193'). Use when ticker is ambiguous or unavailable."
      },
      "form_type": {
       "type": "string",
       "description": "Filing type. Default '10-K'. Supports 10-K, 10-Q, 8-K, S-1, S-4, DEF 14A, 4, 13F-HR."
      },
      "limit": {
       "type": "number",
       "description": "Max filings to return. 1-20. Default 5 (most-recent-first)."
      },
      "summarize": {
       "type": "boolean",
       "description": "If true, runs the latest filing through Venice for an executive-summary tailored to the form. Adds latency. Default false."
      },
      "include_text": {
       "type": "boolean",
       "description": "If true, includes the full clean-text body of the latest filing in the response. Large payload. Default false."
      }
     }
    }
   },
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "ticker": {
       "type": "string"
      },
      "cik": {
       "type": "string"
      },
      "company_name": {
       "type": "string"
      },
      "form_type": {
       "type": "string"
      },
      "filings": {
       "type": "array",
       "items": {
        "type": "object",
        "properties": {
         "form": {
          "type": "string"
         },
         "filed_date": {
          "type": "string"
         },
         "accession_number": {
          "type": "string"
         },
         "period_of_report": {
          "type": "string"
         },
         "primary_document_url": {
          "type": "string"
         }
        }
       }
      },
      "latest_text": {
       "type": "nu
… (truncated)
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "cik": "0000320193",
  "source": "SEC EDGAR",
  "ticker": "AAPL",
  "filings": [
   {
    "form": "10-K",
    "filed_date": "2024-11-01",
    "accession_number": "0000320193-24-000123",
    "period_of_report": "2024-09-28",
    "primary_document_url": "https://www.sec.gov/Archives/edgar/data/320193/000032019324000123/aapl-20240928.htm"
   }
  ],
  "summary": "Apple reported FY24 revenue of $391B, up 2% YoY...",
  "form_type": "10-K",
  "latest_text": null,
  "company_name": "Apple Inc."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/sec-edgar-filing-search-via-x402-agentutility-ai-ea78590f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.agentutility.ai](https://www.zero.xyz/host/x402.agentutility.ai/llms.txt)
