SEC Filing

Retrieve SEC filing metadata for a symbol, including form type, filing date, accession number, and filing URL.

Use this endpoint when you need recent filing metadata and links back to the source SEC documents.

Endpoint

GET /stocks/{symbol}/secfiling
Test request
/stocks/AAPL/secfiling?form_type=10-K&limit=20
Send a request to view the response.

Authentication

Required.

Authorization: Bearer <your_api_key>

Path Parameters

  • symbol: ticker or symbol to resolve

Query Parameters

  • form_type: filing form type, default 10-K
  • limit: positive integer, default 20

Response

The response includes:

  • symbol
  • form_type
  • filings

Each filing includes fields such as:

  • accession_number
  • cik
  • form_type
  • filing_date
  • filing_url

Results are returned in descending filing-date order.

Example Request

curl -H "Authorization: Bearer $your_api_key" \
  "https://api.apifinance.ai/stocks/AAPL/secfiling?form_type=10-K&limit=20"

Notes

  • The endpoint is designed for filing metadata, not full filing text
  • Results are ordered by filing date descending
  • Duplicate filings are ignored during synchronization