# SALT19 SEC Recent Filings

> SALT19 SEC Recent Filings is a paid API for AI agents from api.salt19.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Retrieves the most recent SEC regulatory filings for a given company by CIK number

## Facts

- Endpoint: POST https://api.salt19.com/v1/sec-recent-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/salt19-sec-recent-filings-9df4062c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4UHncUfBloR8mGVAQUCZF

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 salt19-sec-recent-filings-9df4062c -d '<json body>'
```

Example prompt: Can you pull the 5 most recent SEC filings for Apple — their CIK is 0000320193?

## When to prefer this

Use this endpoint when you need structured, up-to-date SEC filing metadata for a known public company identified by CIK number, especially in agentic workflows that need to monitor regulatory disclosures, verify filing status, or enrich financial research pipelines at low cost per call.

## Known failure modes

- Invalid or non-existent CIK returns an error or empty filings array
- Limit parameter outside 1-20 range causes validation error
- Network or upstream EDGAR outage may result in timeout or 5xx error
- CIK with no recent filings returns empty filings array

## How this service works

SALT19 is an independent applied AI systems lab behind EvoMind governed cognition, the MCP-native Agent Utility Grid, the ARCS research community, AeroClear UAS flight intelligence, and practical software for real-world work.

## Output

A JSON object containing the company name, CIK, and an array of recent filings each with form type (e.g. 10-Q, 10-K, 8-K) and filing date, limited to the number requested (up to 20).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "cik": {
   "type": "string",
   "pattern": "^[0-9]{1,10}$"
  },
  "limit": {
   "type": "integer",
   "maximum": 20,
   "minimum": 1
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "cik": "0000320193",
  "company": "Apple Inc.",
  "filings": [
   {
    "form": "10-Q",
    "filing_date": "2026-07-31"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/salt19-sec-recent-filings-9df4062c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.salt19.com](https://www.zero.xyz/host/api.salt19.com/llms.txt)
