# EDGAR Company Submissions via Locus x402

> EDGAR Company Submissions via Locus x402 is a paid API for AI agents from edgar.x402.paywithlocus.com, paid per call via x402, $0.008/call, status unknown (last checked 2026-09-15).

Retrieves SEC EDGAR company filing history and submission metadata for a given company by CIK number, paid via x402 micropayment.

## Facts

- Endpoint: POST https://edgar.x402.paywithlocus.com/edgar/company-submissions
- Price: $0.008/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/edgar-company-submissions-via-locus-x402-72293c93
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_X01kHvzorN5B1FZFcX2yt

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 edgar-company-submissions-via-locus-x402-72293c93 -d '<json body>'
```

Example prompt: Pull the full SEC EDGAR filing history for Apple — their CIK is 320193 — so I can see all their submissions.

## When to prefer this

Use this endpoint when you need structured SEC EDGAR company submission history without obtaining an API key, and are comfortable paying a small per-call USDC micropayment via the x402 protocol. Prefer this over direct EDGAR API calls when you need a managed, pay-per-use gateway with no authentication setup. Choose this over XBRL financial facts or full-text search endpoints when your goal is specifically the filing submission index rather than financial statement values.

## Known failure modes

- Invalid or non-existent CIK returns an empty or error response
- Malformed CIK string (non-numeric) may cause a bad request error
- Payment failure or insufficient USDC balance prevents the request from completing
- Rate limiting or network timeouts from the upstream EDGAR API
- CIK for a private company or non-registrant yields no data

## How this service works

SEC EDGAR public financial data — company filing history, XBRL financial facts (income statements, balance sheets, cash flows), and full-text search across all public filings. No API key required.

## Output

Returns a JSON object containing the company's complete submission history as recorded in SEC EDGAR, including filing types, dates, accession numbers, and associated document metadata. Also includes payment confirmation details (settled USDC amount) and a request tracking ID.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "cik": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {},
  "payment": {
   "scheme": "exact",
   "settledUsdc": "0.001000",
   "authorizedMaxUsdc": "0.001000"
  },
  "request": {
   "id": "00000000-0000-4000-8000-000000000000",
   "statusUrl": "/requests/00000000-0000-4000-8000-000000000000"
  },
  "success": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/edgar-company-submissions-via-locus-x402-72293c93/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from edgar.x402.paywithlocus.com](https://www.zero.xyz/host/edgar.x402.paywithlocus.com/llms.txt)
