Search EDGAR filing text for any phrase with form and date filters — returns matching fili
Search EDGAR filing text for any phrase with form and date filters — returns matching filings with filer, date, items and URL. The search competitors gate at their top tier or lack entirely; one call, no crawling.
20000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-02
updated
Provider
answerpool.io · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xb3ba3Ca99F9742b32fC527CF62688C83b39AED8c",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "20000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"end": "2026-08-31",
"forms": "8-K",
"q": "supply chain disruption",
"start": "2026-08-01"
},
"type": "http"
},
"output": {
"example": {
"as_of": "2026-08-31T14:00:00Z",
"count": 1,
"filings": [
{
"accession": "0001437749-26-028920",
"cik": "0000320193",
"company": "APPLE INC",
"filed": "2026-08-29",
"form": "8-K",
"items": [
"1.03"
],
"url": "https://www.sec.gov/Archives/edgar/data/320193/000143774926028920-index.htm"
}
]
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET",
"HEAD",
"DELETE"
],
"type": "string"
},
"queryParams": {
"additionalProperties": false,
"properties": {
"end": {
"maxLength": 10,
"pattern": "^\\d{4}-\\d{2}-\\d{2}$",
"title": "End",
"type": "string"
},
"forms": {
"anyOf": [
{
"maxLength": 40,
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Forms"
},
"limit": {
"default": 25,
"maximum": 100,
"minimum": 1,
"title": "Limit",
"type": "integer"
},
"q": {
"description": "Full-text query, e.g. \"supply chain disruption\"",
"maxLength": 200,
"minLength": 2,
"title": "Q",
"type": "string"
},
"start": {
"maxLength": 10,
"pattern": "^\\d{4}-\\d{2}-\\d{2}$",
"title": "Start",
"type": "string"
}
},
"required": [
"q",
"start",
"end"
],
"title": "FullTextIn",
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"as_of": {
"title": "As Of",
"type": "string"
},
"count": {
"title": "Count",
"type": "integer"
},
"disclaimer": {
"default": "Derived from public SEC EDGAR filings; not investment advice.",
"title": "Disclaimer",
"type": "string"
},
"filings": {
"items": {
"properties": {
"accession": {
"title": "Accession",
"type": "string"
},
"cik": {
"title": "Cik",
"type": "string"
},
"company": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Company"
},
"filed": {
"title": "Filed",
"type": "string"
},
"form": {
"title": "Form",
"type": "string"
},
"items": {
"default": [],
"items": {
"type": "string"
},
"title": "Items",
"type": "array"
},
"url": {
"title": "Url",
"type": "string"
}
},
"required": [
"accession",
"cik",
"company",
"form",
"filed",
"url"
],
"title": "MarketFilingRow",
"type": "object"
},
"title": "Filings",
"type": "array"
}
},
"required": [
"as_of",
"count",
"filings"
],
"title": "MarketFilingsOutput",
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://answerpool.io/v1/sec/search/fulltext" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://answerpool.io/v1/sec/search/fulltext");
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://answerpool.io/v1/sec/search/fulltext")
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/7794.json, and this resource appears in /discovery/resources and /discovery/search.