Search the full text of every SEC filing since 2001
Search the full text of every SEC filing since 2001. Answers the question a per-company filings feed cannot: which registrants used a given phrase, in which form, and when. Wrap a phrase in double quotes for an exact match, filter by form type and date, and get a breakdown by form and by company alongside the filings themselves.
20000 (raw units)
price
1
calls / 30d
1
unique payers
2026-08-24
updated
Provider
x402-filings.datalayer.workers.dev · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x917e635b83F0dd7e8172c55EC4EEbb28B734cA85",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "20000",
"maxTimeoutSeconds": 60
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"forms": "8-K",
"from": "2026-01-01",
"limit": 20,
"q": "\"material weakness\"",
"to": "2026-08-24"
},
"type": "http"
},
"output": {
"example": {
"breakdown": {
"byForm": [
{
"count": 20,
"form": "8-K"
}
],
"topCompanies": [
{
"company": "EXAMPLE CORP",
"count": 2
}
]
},
"count": 20,
"filings": [
{
"accessionNumber": "0000320193-26-000075",
"cik": "0000320193",
"company": "EXAMPLE CORP",
"filedAt": "2026-07-14",
"form": "8-K",
"url": "https://www.sec.gov/Archives/edgar/data/320193/000032019326000075/0000320193-26-000075-index.htm"
}
],
"query": {
"forms": "8-K",
"limit": 20,
"q": "\"material weakness\""
},
"totalMatching": 385
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"forms": {
"description": "Comma-separated form types, e.g. 8-K,10-K.",
"examples": [
"8-K"
],
"type": "string"
},
"from": {
"description": "Filed on or after, ISO date.",
"examples": [
"2026-01-01"
],
"type": "string"
},
"limit": {
"description": "Max filings, 1-50. Default 20.",
"examples": [
20
],
"type": "integer"
},
"q": {
"description": "Phrase to search. Use double quotes for an exact phrase. Required.",
"examples": [
"\"material weakness\""
],
"type": "string"
},
"to": {
"description": "Filed on or before, ISO date.",
"examples": [
"2026-08-24"
],
"type": "string"
}
},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://x402-filings.datalayer.workers.dev/v1/sec/full-text" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://x402-filings.datalayer.workers.dev/v1/sec/full-text");
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://x402-filings.datalayer.workers.dev/v1/sec/full-text")
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/6084.json, and this resource appears in /discovery/resources and /discovery/search.