GetEdgarFilingYearList
Description
Returns the array of years where SEC filings exist. When any of the parameters is missed, then the default value is used.
Input Parameters
Parameter | Description |
---|---|
| To use the Q4 API, you need to have an application key. We use this to track API usage. Currently, the use of the API is allowed only with prior permission. Requests for API keys are reviewed by staff. Please get in touch with support to get the API Key. |
| Specifies that returned data records have to include associated tags. |
| Specifies the company indice symbol that was used to do SEC filing. |
| Specifies the comma-separated string of Form Group Id(s) that should be used to filter SEC filings. The default value is "" and the filter by |
| Specifies if SEC filings with no documents need to be populated. |
Sample URL
https://domain.com/feed/SECFiling.svc/GetEdgarFilingYearList?apiKey=c34993dcba1942418d97656f3ed00979&symbol=AEM&exchange=NYSE&formGroupIdList=&excludeNoDocuments=false
Sample Request
var data = {
apiKey: apiKey,
symbol: "AEM",
exchange: "NYSE",
formGroupIdList: "",
excludeNoDocuments: false
}
$.ajax({
type: "GET",
url: domainName + "/feed/SECFiling.svc/GetEdgarFilingYearList",
data: data,
dataType: "json",
success: OnLoadYearListSuccess,
error: OnLoadSECListError
});
Sample Response
{
"GetEdgarFilingYearListResult": [2012, 2011, 2010, 2009, 2008, 2007, 2006, 2005, 2004, 2003, 2002, 2001, 2000, 1999, 1998, 1997, 1996, 1995, 1994, 1993, 1992, 1991, 1990, 1989, 1988, 1987, 1986, 1985]
}