Check whether a company filed a new SEC 8-K, 10-Q, or 10-K after a timestamp
Check whether a company filed a new SEC 8-K, 10-Q, or 10-K after a timestamp. Accepts a ticker or CIK and returns a compact filing decision, accession links, and a next-check cursor; no materiality opinion or investment advice.
10000 (raw units)
price
8
calls / 30d
3
unique payers
2026-09-12
updated
Provider
evidence.regulavita.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x9500075649a70411c81f99c4314f6cff55d12579",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "10000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"forms": [
"8-K",
"10-Q",
"10-K"
],
"max_source_age_seconds": 600,
"since": "2026-08-11T12:24:29Z",
"ticker": "AAPL"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"decision": "NEW_RELEVANT_FILING",
"filing_count": 1,
"filings": [],
"next_since": "2026-08-04T00:00:00Z",
"premium_evidence_path": "/v1/sec/filing-trigger-delta",
"request_id": "sec_signal_example"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"cik": {
"description": "SEC Central Index Key; use instead of ticker.",
"pattern": "^[0-9]{1,10}$",
"type": "string"
},
"forms": {
"items": {
"enum": [
"8-K",
"10-Q",
"10-K"
]
},
"maxItems": 3,
"minItems": 1,
"type": "array"
},
"max_source_age_seconds": {
"maximum": 3600,
"minimum": 60,
"type": "integer"
},
"since": {
"description": "Return selected forms accepted after this UTC timestamp.",
"format": "date-time",
"type": "string"
},
"ticker": {
"description": "US-listed company ticker, for example AAPL.",
"pattern": "^[A-Za-z0-9.-]{1,10}$",
"type": "string"
}
},
"required": [
"ticker",
"since"
],
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST",
"PUT",
"PATCH"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"decision": {
"enum": [
"NEW_RELEVANT_FILING",
"NO_NEW_RELEVANT_FILING"
]
},
"filing_count": {
"type": "integer"
},
"filings": {
"type": "array"
},
"next_since": {
"format": "date-time",
"type": "string"
},
"request_id": {
"type": "string"
}
},
"required": [
"request_id",
"decision",
"filing_count",
"next_since"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://evidence.regulavita.com/v1/sec/filing-change-signal" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://evidence.regulavita.com/v1/sec/filing-change-signal");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://evidence.regulavita.com/v1/sec/filing-change-signal")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/2192.json, and this resource appears in /discovery/resources and /discovery/search.