Catalog/finance-edgar

Finance

SEC EDGAR filings by ticker API

Recent SEC filings for a US-listed company by ticker — form type, date, description, and a direct document link. Optionally filter by form (10-K, 10-Q, 8-K). Wraps the free SEC EDGAR API and resolves ticker->CIK for you.

Price$0.01per request
MethodPOST
Route/v1/finance/edgar
StatusLive
MIME typeapplication/json
Rate limit40/minute
Cache1800s public
financesecedgarfilings10-k8-kcompany
API URLhttps://x402.hexl.dev/v1/finance/edgar
Integration docs
Example request
{
  "ticker": "AAPL",
  "formType": "10-K",
  "limit": 3
}
Example response
{
  "ticker": "AAPL",
  "cik": "0000320193",
  "company": "Apple Inc.",
  "filings": [
    {
      "form": "10-K",
      "filingDate": "2025-11-01",
      "description": "Annual report",
      "accessionNumber": "0000320193-25-000001",
      "url": "https://www.sec.gov/Archives/edgar/data/320193/000032019325000001/aapl-20250930.htm"
    }
  ],
  "sourceUrl": "https://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=0000320193"
}
Input schema
{
  "type": "object",
  "required": [
    "ticker"
  ],
  "properties": {
    "ticker": {
      "type": "string",
      "examples": [
        "AAPL",
        "MSFT"
      ]
    },
    "formType": {
      "type": "string",
      "examples": [
        "10-K",
        "8-K"
      ]
    },
    "limit": {
      "type": "number",
      "minimum": 1,
      "maximum": 50,
      "default": 10
    }
  }
}
Output schema
{
  "type": "object",
  "required": [
    "ticker",
    "cik",
    "company",
    "filings"
  ],
  "properties": {
    "ticker": {
      "type": "string"
    },
    "cik": {
      "type": "string"
    },
    "company": {
      "type": "string"
    },
    "filings": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "form": {
            "type": "string"
          },
          "filingDate": {
            "type": "string"
          },
          "description": {
            "type": "string"
          },
          "accessionNumber": {
            "type": "string"
          },
          "url": {
            "type": "string"
          }
        }
      }
    },
    "sourceUrl": {
      "type": "string"
    }
  }
}