# apiacre.com SEC Filing Signals

> apiacre.com SEC Filing Signals is a paid API for AI agents from apiacre.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-13).

Look up a public company by ticker or CIK, normalize recent SEC filings, and flag deterministic events like late filings, amendments, auditor changes, non-reliance disclosures, control changes, or bankruptcy filings.

## Facts

- Endpoint: POST https://apiacre.com/v1/research/sec-filing-signals
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/apiacre-com-sec-filing-signals-2a476554
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HJfWSsfcCdvZqM091a6Y6

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 apiacre-com-sec-filing-signals-2a476554 -d '<json body>'
```

Example prompt: Can you look up SEC filing signals for Tesla — ticker TSLA — and tell me if there have been any late filings, auditor changes, amendments, or bankruptcy or non-reliance disclosures recently?

## When to prefer this

Choose this endpoint when you need deterministic, structured SEC filing signals for a US public company rather than general financial data or news sentiment. It is ideal for due diligence workflows, compliance monitoring, or automated screening that requires reliable flags on specific regulatory events (late filings, auditor changes, restatements) rather than qualitative analysis or price data.

## Known failure modes

- Unknown ticker or CIK returns a not-found error
- Company with no recent SEC filings returns an empty signals array
- Malformed or missing ticker/CIK input returns a validation error
- SEC EDGAR data lag may cause very recent filings to be absent
- Private companies not registered with the SEC will not be found

## How this service works

Look up a public company by ticker or CIK, normalize recent SEC filings, and flag deterministic events such as late filings, amendments, auditor changes, non-reliance, control changes, or bankruptcy disclosures.

## Output

Returns normalized SEC filing data for the requested company, including structured flags for deterministic events such as late filings (NT forms), amendments (A-suffix filings), auditor changes (reported in 8-K or proxy), non-reliance disclosures (8-K Item 4.02), internal control changes, and bankruptcy-related filings — each with the relevant form type, date, and a human-readable signal label.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "forms": {
   "type": "array",
   "items": {
    "type": "string"
   }
  },
  "identifier": {
   "type": "string"
  },
  "max_filings": {
   "type": "integer"
  },
  "lookback_days": {
   "type": "integer"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {
   "cik": "0000320193",
   "sic": "3571",
   "name": "Apple Inc.",
   "source": "https://data.sec.gov/submissions/CIK0000320193.json",
   "filings": [
    {
     "form": "10-Q",
     "filingDate": "2026-01-30",
     "documentUrl": "https://www.sec.gov/Archives/edgar/data/320193/example/filing.htm"
    }
   ],
   "signals": [
    {
     "code": "leadership_change",
     "form": "8-K",
     "item": "5.02",
     "detail": "8-K reports director or principal-officer changes",
     "weight": 5
    }
   ],
   "tickers": [
    "AAPL"
   ],
   "exchanges": [
    "Nasdaq"
   ],
   "disclaimer": "Deterministic filing activity only; not investment, legal, accounting, or cre...",
   "filingCount": 5,
   "retrievedAt": "2026-08-09T00:00:00Z",
   "lookbackDays": 365,
   "fiscalYearEnd": "0928",
   "attentionLevel": "low",
   "attentionScore": 5,
   "sicDescription": "Electronic Computers"
  },
  "meta": {
   "cached": false,
   "sources": [],
   "warnings": [],
   "duration_ms": 42,
   "next_actions": []
  },
  "service": "research.sec-filing-signals",
  "version": "1",
  "request_id": "018f1f54-7f38-7ba2-8dc3-5f90272d9f1a"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/apiacre-com-sec-filing-signals-2a476554/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from apiacre.com](https://www.zero.xyz/host/apiacre.com/llms.txt)
