Catalog/finance-sec-search

Finance

SEC full-text filing search API

Search the actual TEXT of SEC filings (not just the filing list) via EDGAR full-text search, optionally restricted to a form type. Returns company, form, date, and a direct URL. Answers 'which filings mention going concern', 'companies talking about material weakness', 'find 10-Ks discussing X'.

Price$0.01per request
MethodPOST
Route/v1/finance/sec-search
StatusLive
MIME typeapplication/json
Rate limit30/minute
Cache3600s public
financesecedgarfull-text-searchfilings10-kresearchdisclosure
API URLhttps://x402.hexl.dev/v1/finance/sec-search
Integration docs
Example request
{
  "query": "\"going concern\"",
  "forms": "10-K",
  "limit": 2
}
Example response
{
  "query": "\"going concern\"",
  "forms": "10-K",
  "total": 10000,
  "results": [
    {
      "company": "EXAMPLE CORP (EXMP) (CIK 0001234567)",
      "form": "10-K",
      "filedDate": "2026-03-01",
      "accession": "0001234567-26-000123",
      "url": "https://www.sec.gov/Archives/…"
    }
  ]
}
Input schema
{
  "type": "object",
  "required": [
    "query"
  ],
  "properties": {
    "query": {
      "type": "string",
      "examples": [
        "\"going concern\""
      ]
    },
    "forms": {
      "type": "string",
      "examples": [
        "10-K"
      ]
    },
    "limit": {
      "type": "number",
      "default": 10
    }
  }
}
Output schema
{
  "type": "object",
  "additionalProperties": true
}