Skip to content
noxstock
API referenceEndpointsSEC filings

List SEC filings

GET/v2/filings

List recent SEC filings for a supported stock, optionally filtered by form. Cold EDGAR calls can be slower for heavy filers.

Access: Starter and Builder.

Authorization

ApiKeyAuth
X-API-Key<token>

noxstock API key from the dashboard.

In: header

Query Parameters

symbol*Symbol

Ticker symbol. Case-insensitive; share-class dots are normalized to dashes (BRK.B == BRK-B). Returns SYMBOL_UNKNOWN when the symbol is outside the supported universe.

form?|

Comma-separated SEC form-type filter (10-K, 10-Q, 8-K, 4). Defaults to 10-K,10-Q,8-K when omitted.

limit?|

Maximum number of rows to return. Bounded by the endpoint-specific minimum / maximum constraints documented in the parameter schema.

Header Parameters

X-API-Key?string|null

Response Body

application/json

application/json

curl -X GET "https://example.com/v2/filings?symbol=AAPL"
{
  "data": {
    "as_of": "string",
    "cache_age_seconds": 0,
    "filings": [
      {
        "accession": "string",
        "filing_date": "string",
        "form": "string",
        "items": [
          "string"
        ],
        "items_text": [
          "string"
        ],
        "period_of_report": "string",
        "sections": [
          {
            "char_count": 0,
            "name": "string"
          }
        ],
        "size_bytes": 0,
        "url": "string"
      }
    ],
    "freshness": "intraday",
    "market_status": "open",
    "symbol": "string"
  }
}
Empty
Empty
{
  "detail": [
    {
      "ctx": {},
      "input": null,
      "loc": [
        "string"
      ],
      "msg": "string",
      "type": "string"
    }
  ]
}
Empty
Empty