← Back to Home

FMP Node API Documentation

SEC Endpoints

Access Securities and Exchange Commission (SEC) filings and industry classification data. These endpoints provide real-time feeds of SEC filings, direct links to specific filings, and industry classification information based on the Standard Industrial Classification (SIC) system.

Overview

The SEC endpoints provide access to:

  • RSS Feeds - Real-time feeds of SEC filings from publicly traded companies
  • SEC Filings - Direct links to specific SEC filings for companies
  • Industry Classification - SIC-based industry classification data

RSS Feed API (v4)

Get a real-time feed of SEC filings from publicly traded companies, including the filing type, link to SEC page, and direct link to the filing.

Parameters

ParameterTypeRequiredDescription
limitnumberNoNumber of results to return (default: 100)
typestringNoFilter by form type (e.g., '10-K', '8-K')
fromstringNoStart date in YYYY-MM-DD format
tostringNoEnd date in YYYY-MM-DD format
isDonebooleanNoFilter by completion status

Response

RSS Feed All API

Get a real-time feed of all SEC filings from publicly traded companies in the latest RSS feed format. This endpoint provides a comprehensive overview of all SEC filings, including the filing type, link to SEC page, and direct link to the filing.

Parameters

ParameterTypeRequiredDescription
pagenumberNoPage number for pagination (default: 0)
datatypestringNoData format (e.g., 'csv', 'json')

Response

RSS Feed V3 API

Get a real-time feed of SEC filings in the latest RSS feed format (V3), which includes support for multiple namespaces, digital signatures, enclosures, and categories and tags.

Parameters

ParameterTypeRequiredDescription
pagenumberNoPage number for pagination (default: 0)
datatypestringNoData format (e.g., 'csv', 'json')

Response

RSS Feed 8-K API

Get a real-time feed of 8-K SEC filings from publicly traded companies. 8-K filings are required when a company experiences a significant event.

Parameters

ParameterTypeRequiredDescription
pagenumberNoPage number for pagination (default: 0)
fromstringNoStart date in YYYY-MM-DD format
tostringNoEnd date in YYYY-MM-DD format
hasFinancialbooleanNoFilter filings that contain financial data
limitnumberNoNumber of results to return

Response

SEC Filings API

Access direct links to SEC filings for a specific company, including the filing type, link to the SEC page, and direct link to the specific filing.

Parameters

ParameterTypeRequiredDescription
symbolstringYesThe stock symbol to get filings for
pagenumberNoPage number for pagination (default: 0)
typestringNoFilter by form type (e.g., '10-K')

Response

Individual Industry Classification API

Identify the industry in which a particular company operates, based on the Standard Industrial Classification (SIC) system.

Parameters

ParameterTypeRequiredDescription
symbolstringNo*The stock symbol to classify
ciknumberNo*The CIK number to classify
sicCodenumberNo*The SIC code to search for

*At least one parameter is required

Response

All Industry Classification API

Get a comprehensive overview of all industries, classified according to the SIC system.

Response

Returns an array of IndustryClassification objects (same as Individual Industry Classification API).

Industry Classification Codes API

Learn more about the SIC system and identify the SIC code for a particular industry.

Parameters

ParameterTypeRequiredDescription
industryTitlestringNo*Search by industry title
sicCodenumberNo*Search by SIC code

*At least one parameter is required

Response

Common Use Cases

Monitor Recent SEC Filings

Track 8-K Events

Analyze Company SEC History

Industry Analysis

Error Handling

All SEC endpoints return the standard API response format:

Rate Limiting

SEC endpoints are subject to FMP's standard rate limits. For high-volume applications, consider implementing appropriate caching and rate limiting strategies.

Related Endpoints