research · research · sec · edgar · company · filings · public-company · due-diligence · risk-signals

SEC filing activity signals

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.

$0.05 USDCBasex402 v2POST

Endpoint

https://apiacre.com/v1/research/sec-filing-signals

Send the JSON body below. An unpaid request returns HTTP 402 with a PAYMENT-REQUIRED header; an x402-compatible buyer signs the requirement and retries with PAYMENT-SIGNATURE.

Input example

{
  "identifier": "AAPL",
  "lookback_days": 365,
  "max_filings": 25,
  "forms": [
    "10-K",
    "10-Q",
    "8-K"
  ]
}

Response shape

View free static sample JSON

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

Try the payment challenge

curl -i -X POST 'https://apiacre.com/v1/research/sec-filing-signals' \
  -H 'content-type: application/json' \
  --data '{"identifier":"AAPL","lookback_days":365,"max_filings":25,"forms":["10-K","10-Q","8-K"]}'