Finance
SEC EDGAR full-text search API
Search the full text of SEC EDGAR filings via the public EFTS endpoint (keyless) and return a flat, clean result: filer name + 10-digit CIK, form type, filing date, accession number, location, and a ready-to-open filing URL — instead of EFTS's nested Elasticsearch blob. Answers 'find 10-K filings mentioning climate risk', 'which companies disclosed X', 'search SEC filings for this phrase', 'recent 8-K filings about Y'.
Price$0.01per request
MethodPOST
Route/v1/finance/sec-fulltext
StatusLive
MIME typeapplication/json
Rate limit60/minute
Cache3600s public
financesecedgareftsfull-text-searchfilings10-kdisclosure
API URL
Integration docshttps://x402.hexl.dev/v1/finance/sec-fulltextExample request
{
"query": "\"climate risk\"",
"forms": "10-K",
"limit": 2
}Example response
{
"query": "\"climate risk\"",
"total": 1445,
"totalRelation": "eq",
"filings": [
{
"filer": "FIFTH THIRD BANCORP (FITB, FITBI, FITBO, FITBP) (CIK 0000035527)",
"cik": "0000035527",
"form": "10-K",
"filedDate": "2022-02-25",
"accessionNumber": "0000035527-22-000119",
"location": "Cincinnati, OH",
"url": "https://www.sec.gov/Archives/edgar/data/35527/000003552722000119/fitbannualreport202110-k.pdf"
}
]
}Input schema
{
"type": "object",
"required": [
"query"
],
"properties": {
"query": {
"type": "string",
"examples": [
"\"climate risk\""
]
},
"forms": {
"type": "string",
"examples": [
"10-K"
]
},
"limit": {
"type": "number",
"examples": [
10
]
}
}
}Output schema
{
"type": "object",
"additionalProperties": true
}