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.
Endpoint
https://apiacre.com/v1/research/sec-filing-signalsSend 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.
Pay $0.05 USDC and run in your browserOfficial Coinbase agent path
Coinbase Agentic Wallet can satisfy this x402 request in one command. Running it may pay automatically, so --max-amount is fixed to $0.05 USDC in atomic units. Copying the command does not install, authenticate, sign, or pay; review the request and use a separate low-value wallet before running it.
npx --yes awal@latest x402 pay https://apiacre.com/v1/research/sec-filing-signals \
-X POST \
-d '{"identifier":"AAPL","lookback_days":365,"max_filings":25,"forms":["10-K","10-Q","8-K"]}' \
--max-amount 50000 \
--jsonCoinbase pay-for-service documentation · Buyer setup and wallet safety
Alternative third-party AgentCash commands
Run check first without payment. Its fetch command may automatically pay up to the exact listed price.
npx --yes agentcash@latest check https://apiacre.com/v1/research/sec-filing-signals
npx --yes agentcash@latest fetch https://apiacre.com/v1/research/sec-filing-signals \
--method POST \
--header 'content-type: application/json' \
--body '{"identifier":"AAPL","lookback_days":365,"max_filings":25,"forms":["10-K","10-Q","8-K"]}' \
--payment-protocol x402 \
--payment-network base \
--max-amount 0.050Input example
{
"identifier": "AAPL",
"lookback_days": 365,
"max_filings": 25,
"forms": [
"10-K",
"10-Q",
"8-K"
]
}Response shape
{
"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": [],
"next_actions": []
}
}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"]}'