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, default10-Klimit: positive integer, default20
Response
The response includes:
symbolform_typefilings
Each filing includes fields such as:
accession_numbercikform_typefiling_datefiling_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